{% extends "nota.html" %}
{% block title %}{% if e %}Carátula {{ e.id }}{% endif %}{% endblock %}
{% block stylesheets %}
{% endblock %}
{% block encabezado %}{% endblock %}
{% block content %}
{% if e %}
Expte. {{ e.id }}
PLANO DE MENSURA
Nº
{{ e.inscripcion_numero|default:"__________" }}
PROVINCIA: SANTA FE
DEPARTAMENTO:
{% regroup e.expedientepartida_set.all by partida.sd.dp.nombre as ep %}
{% for dp in ep %}
{{ dp.grouper|upper }}{% if not forloop.last %}, {% endif %}
{% endfor %}
DISTRITO:
{% regroup e.expedientepartida_set.all by partida.sd.ds.nombre as ep %}
{% for ds in ep %}
{{ ds.grouper|upper }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% for el in e.expedientelugar_set.all %}
{% for c in el.catastrolocal_set.all %}
Sección: {{ c.seccion }} - Manzana: {{ c.manzana }} - Parcela: {{ c.parcela }}{% if c.subparcela %} - Subparcela: {{ c.subparcela }}{% endif %}{% if c.suburbana %}- Zona Suburbana{% endif %}
{% endfor %}
{% endfor %}
PROPIETARIO{% if e.propietarios_count > 1 %}S{% endif %}:
{% for ep in e.get_propietarios %}
{{ ep.persona.nombres|upper }} {{ ep.persona.apellidos }}
{% if ep.sucesion %}
(* hoy sus sucesores){% endif %}
{% if ep.nuda_propiedad %}
(* nuda propiedad){% endif %}
{% if ep.partes_indivisas_propias %}
({{ ep.partes_indivisas_propias }}/{{ ep.partes_indivisas_total }} partes indivisas){% endif %}
{% endfor %}
INMUEBLE: {{ inmueble }}
DOMINIO:
{% if matricula %}
Matrícula Nº: {{ matricula|default:"_____" }} -
{% else %}
Tº: {{ tomo|default:"_____" }} {% if par %}Par{% else %}Impar{% endif %} -
Fº: {{ folio|default:"_____" }} -
Nº: {{ numero|default:"_____" }} -
{% endif %}
{{ fecha_dominio|default:"___/___/_____" }}
BALANCE DE SUPERFICIES:
Sup. s/Título
{% with e.expedientepartida_set.all|first as ep %}
{% with ep.catastro_set.all|first as c %}
{% if c.zona.id == 4 %}
____has ____as ____cas ____dm²
{% else %}
_______.____ m²
{% endif %}
{% endwith %}
{% endwith %}
Sup. s/Mensura
Lote ___
{% with e.expedientepartida_set.all|first as ep %}
{% with ep.catastro_set.all|first as c %}
{% if c.zona.id == 4 %}
____has ____as ____cas ____dm²
{% else %}
_______.____ m²
{% endif %}
{% endwith %}
{% endwith %}
|
{% for profesional in e.profesionales_firmantes.all %}
{{ profesional.nombres|upper }} {{ profesional.apellidos|upper }} |
{% endfor %}
|
{% for profesional in e.profesionales_firmantes.all %}
{{ profesional.titulo|upper }} ICoPA {{ profesional.icopa }} |
{% endfor %}
{% with e.profesionales_firmantes.all|first as p %}
{{ p.lugar.observacion|upper }}, {{ e.fecha_plano|date:"E \D\E Y"|default:"__________"|upper }} |
{% endwith %}
{% for profesional in e.profesionales_firmantes.all %}
{{ profesional.domicilio }} - {{ profesional.lugar.observacion|upper }} |
{% endfor %}
OBSERVACIONES:
Expediente Co.P.A. Nº {{ e.orden_numero|default:"__________" }} - {{ e.orden_fecha|default:"___/___/______" }}
{% for a in e.antecedente_set.all %}{% if 'Modifica' in a.obs %}{{ a.obs }}
{% endif %} {% endfor %}
{{ obs }}
NOMENCLATURA CATASTRAL |
{% with e.expedientepartida_set.all|first as ep %}
{% with ep.partida as p %}
{% with ep.catastro_set.all|first as c %}
DPTO |
DTO |
SUBDTO |
Z |
{{ p.sd.dp }} |
{{ p.sd.ds }} |
{{ p.sd.subdistrito }} |
{{ c.zona }} |
SECC |
POLIG |
MANZANA |
{{ c.seccion|add:"0"|stringformat:"02d" }} |
{{ c.poligono|default:"" }} |
{{ c.manzana|add:"0"|stringformat:"04d" }} |
PARCELA |
SUBPARC |
{% if e.expedientepartida_set.count > 1 %}
VER DETALLE |
{% else %}
{{ c.parcela|add:"0"|stringformat:"04d" }} |
{{ c.subparcela|add:"0"|stringformat:"04d" }} |
{% endif %}
{% endwith %}
{% endwith %}
{% endwith %}
No existe el expediente.
{% endif %}
{% endblock %}