{% extends 'base.html' %} {% block title %}{{ cliente.nombre_completo }}{% endblock %} {% block page_title %}Perfil del Cliente{% endblock %} {% block page_subtitle %}{{ cliente.nombre_completo }}{% endblock %} {% block content %}
{{ cliente.nombres.0|upper }}

{{ cliente.nombre_completo }}

Cliente
{{ cliente.dni }}
{{ cliente.telefono }}
{{ cliente.email|default:"Sin email" }}
{{ cliente.direccion|default:"Sin dirección" }}
Desde {{ cliente.fecha_registro|date:"d/m/Y" }}
Editar
{% csrf_token %} {% if cliente.is_active %} {% else %} {% endif %}
Mascotas ({{ mascotas.count }})
Nueva Mascota
{% if mascotas %}
{% for mascota in mascotas %}
{% if mascota.foto %} {% else %}
{{ mascota.nombre.0|upper }}
{% endif %}
{{ mascota.nombre }}
{{ mascota.get_especie_display }} {{ mascota.get_sexo_display }}
{% if mascota.raza %}
{{ mascota.raza }}
{% endif %} {% if mascota.peso_actual %}
{{ mascota.peso_actual }} kg
{% endif %}
Historia Vacuna
{% csrf_token %} {% if mascota.is_active %} {% else %} {% endif %}
{% endfor %}
{% else %}

Este cliente aún no tiene mascotas registradas.

Agregar primera mascota
{% endif %} {% with citas=cliente.mascotas.all %} {% endwith %}
Volver al listado
{% endblock %}