{% extends "basic.html" %} {% load humanize i18n %} {% block title %}Dashboard{% endblock %} {% block content %} {% language 'id' %}
{% include "header.html" %}
{% csrf_token %}
{% for x in invoicebed %}
 {{ x.nama }}  - {{ x.pendaftaran.pasien.first_name }}
{% csrf_token %}
{% for z in cppt %} {% if z.pendaftaran == x.pendaftaran %} CPPT Ke {{ forloop.counter }} | Status {{ z.status }} {% endif %} {% endfor %} Surat Perintah Rawat Inap Informed Consent Lembar Pertama Pasien Resume Medis {% if x.pendaftaran.dokter_ranap %} SEP RANAP {{ x.nomor_sep_ranap }} {% endif %} {% if x.pendaftaran.dokter %} SEP {{ x.nomor_sep }} {% endif %}
{% endfor %}
{% include "footer.html" %}
{% endlanguage %} {% endblock %}