마이페이지

로그아웃
{% if user.profile_image_url %} 프로필 {% else %} 😊 {% endif %}

{{ user.nickname or '회원' }}님

{{ user.phone or '전화번호 미등록' }}

🎁
{{ '{:,}'.format(user.mileage_balance or 0) }}
포인트
📦
{{ purchase_count or 0 }}
구매
🐾
{{ pets|length }}
반려동물

🐾 내 반려동물

{% if pets %} {% for pet in pets %}
{% if pet.photo_url %} {{ pet.name }} {% else %} {{ '🐕' if pet.species == 'dog' else ('🐈' if pet.species == 'cat' else '🐾') }} {% endif %}
{{ pet.name }}
{{ pet.species_label }} {% if pet.breed %}· {{ pet.breed }}{% endif %} {% if pet.gender %}· {{ '♂' if pet.gender == 'male' else ('♀' if pet.gender == 'female' else '') }}{% endif %}
{% endfor %} {% else %}
🐾

등록된 반려동물이 없습니다

{% endif %}