{% extends 'base.html' %} {% block content %}
{% if active_tab == 'clinical' %}| Fecha | Profesional | Diagnóstico | Resumen |
|---|---|---|---|
| {{ 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: {% endif %}{% for att in item.patient_visible_attachments %}{{ att.filename }}{% endfor %} |
| Todavía no hay evoluciones visibles en tu historia clínica. | |||
| Fecha | Número | Profesional | Medicamento / indicación | Estado | Acciones |
|---|---|---|---|---|---|
| {{ 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. | |||||
| Fecha | Profesional | Servicio | Estado | Acciones |
|---|---|---|---|---|
| {{ 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. | ||||