{% extends "menu.html" %} {% block title %}GEA | Listado de Personas{% endblock title %} {# set menu in active mode #} {% block nav-list-per %} class="active"{% endblock %} {% block content %}
{% include "_pagination.html" %} {% for p in object_list %} {% if p.expedientepersona_set.count > 0 %} {% if p.expedientepersona_set %} {% for ep in p.expedientepersona_set.all %} {% if not forloop.first %} {% endif %} {% endfor %} {% endif %} {% endif %} {% empty %} {% endfor %}
Persona Expediente(s) Lugar(es) Partida(s) Plano
{{ p.nombre_completo }}
{{ ep.expediente.id }} {% if ep.expediente.orden_numero and not ep.expediente.inscripcion_numero %}PENDIENTE{% endif %} {% if ep.expediente.cancelado %}CANCELADO{% endif %} {% if ep.comitente %}COMITENTE{% endif %} {% if ep.expediente.expedientelugar_set %} {% for el in ep.expediente.expedientelugar_set.all %} {{ el.lugar.nombre }} {% for cl in el.catastrolocal_set.all %}
{{ cl }}{% endfor %}{% if not forloop.last %}
{% endif %} {% endfor %} {% endif %}
{% if ep.expediente.expedientepartida_set %} {% for ep in ep.expediente.expedientepartida_set.all %} {% if ep.set_ruta %}{% endif %}{{ ep.partida.sd }}-{{ ep.partida }}{% if ep.set_ruta %}{% endif %}{% if not forloop.last %}
{% endif %} {% endfor %} {% endif %}
{% if ep.expediente.plano_ruta %}{% endif %}{% if ep.expediente.inscripcion_numero %}{{ ep.expediente.inscripcion_numero }}{% endif %}{% if ep.expediente.plano_ruta %}{% endif %} {% if ep.expediente.inscripcion_fecha %}({{ ep.expediente.inscripcion_fecha }}){% endif %}
{% include "_pagination.html" %} {% endblock content %}