{% extends "menu.html" %} {% block title %}GEA | Listado de Expedientes{% endblock title %} {# set menu in active mode #} {% block nav-list-exp %} class="active"{% endblock %} {% block content %} {% if cl %} {% include "_pagination.html" %} {% for e in cl %} {% endfor %}
Expediente Personas Lugar(es) Partida(s) Plano
{{ e.id }} {% if e.expedientepersona_set %} {% for ep in e.expedientepersona_set.all %} {{ ep.persona.apellidos }} {{ ep.persona.nombres }} {% if ep.comitente %}(Comitente){% endif %} {% if ep.persona.telefono or ep.persona.celular %}({{ ep.persona.telefono }} / {{ ep.persona.celular }}){% endif %}
{% endfor %} {% endif %}
{% if e.expedientelugar_set %} {% for el in e.expedientelugar_set.all %} {{ el.lugar.nombre }} {% for cl in el.catastrolocal_set.all %}
{{ cl }}{% endfor %} {% if not forloop.last %}
{% endif %} {% endfor %} {% endif %}
{% if e.expedientepartida_set %} {% for ep in e.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 e.plano_ruta %}{% endif %}{% if e.inscripcion_numero %}{{ e.inscripcion_numero }}{% endif %}{% if e.plano_ruta %}{% endif %} {% if e.inscripcion_fecha %}({{ e.inscripcion_fecha }}){% endif %}
{% include "_pagination.html" %} {% else %} {% endif %} {% endblock content %}