{% extends 'base.html' %} {% block content %}

Clientes

Bienvenido, {{ patient.nombre_completo }}. Desde aquí podés administrar tus turnos y documentación clínica.

Solicitar turno Cambiar contraseña
{% if active_tab == 'clinical' %}
Mi historia clínica
{% for item in clinical_entries %} {% else %} {% endfor %}
FechaProfesionalDiagnósticoResumen
{{ item.entry_datetime.strftime('%d/%m/%Y %H:%M') if item.entry_datetime else '' }}
Folio {{ item.folio_number }}
{{ item.professional.display_name if item.professional else '—' }}
{{ item.specialty_name or '—' }}
{{ item.diagnosis_text or '—' }}
{{ item.cie10_code or '—' }}{% if item.snomed_term %} · {{ item.snomed_term }}{% endif %}
Plan: {{ item.plan or '—' }}
Tratamiento: {{ item.treatment or '—' }}
{% if item.patient_visible_attachments %}
Adjuntos:
{% for att in item.patient_visible_attachments %}{{ att.filename }}{% endfor %}
{% endif %}
Todavía no hay evoluciones visibles en tu historia clínica.
{% elif active_tab == 'prescriptions' %}
Mis recetas
{% for item in prescriptions %} {% else %} {% endfor %}
FechaNúmeroProfesionalMedicamento / indicaciónEstadoAcciones
{{ item.prescription_date.strftime('%d/%m/%Y') if item.prescription_date else '' }} {{ item.legal_number }}
{{ item.cuir }}
{{ item.professional_display_name }} {{ item.medication_generic_name }}
{{ item.dosage_instructions }}
{{ item.computed_status }}
No tenés recetas cargadas.
{% elif active_tab == 'profile' %}
Mis datos personales
{% else %}
Mis turnosSolicitar nuevo turno
{% for item in appointments %} {% else %} {% endfor %}
FechaProfesionalServicioEstadoAcciones
{{ item.appointment_date.strftime('%d/%m/%Y') if item.appointment_date else '' }} {{ item.start_time.strftime('%H:%M') if item.start_time else '' }} {{ item.professional.display_name if item.professional else '—' }} {{ item.service.name if item.service else '—' }} {{ item.status }}
Gestionar{% if item.status in ['pending','confirmed'] %}
{% endif %}
Todavía no tenés turnos cargados.
{% endif %} {% endblock %}