mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
{% load i18n %}
|
|
{% load compilacao_filters %}
|
|
|
|
{% if object_list.count >= 100 %}
|
|
<div class="alert-box success radius">
|
|
{% trans 'Use argumentos para simplificar listagem...' %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% for dpt in object_list %}
|
|
{% ifchanged dpt.ta%}
|
|
{% if not forloop.first %}</ul>{% endif %}
|
|
<div class="ta_title">{{dpt.ta}}</div>
|
|
<ul>
|
|
{% endifchanged %}
|
|
|
|
{% if dpt.is_relative_auto_insert and dpt.dispositivo_pai.nivel != 0 %}
|
|
<li>
|
|
<div class="iteminput">
|
|
<input type="{{request.GET.tipo_form}}" name="dispositivo_ref" id="r{{dpt.pk}}" value="{{dpt.pk}}"/>
|
|
</div>
|
|
<div class="itemlabel">
|
|
<label for="r{{dpt.dispositivo_pai.pk}}">{{dpt.dispositivo_pai.rotulo|safe}} - {{dpt.texto|safe}}</label>
|
|
<a target="_blank" href="{% url 'compilacao:ta_text' dpt.ta.pk%}#{{dpt.pk}}" class="nomenclatura_heranca">{% nomenclatura_heranca dpt 1 1 %}</a>
|
|
</div>
|
|
</li>
|
|
{% elif not dpt.tipo_dispositivo.dispositivo_de_articulacao %}
|
|
<li>
|
|
<div class="iteminput">
|
|
<input type="{{request.GET.tipo_form}}" name="dispositivo_ref" id="r{{dpt.pk}}" value="{{dpt.pk}}"/>
|
|
</div>
|
|
<div class="itemlabel">
|
|
<label for="r{{dpt.pk}}">{{dpt.rotulo|safe}} - {{dpt.texto|safe}}</label>
|
|
<a target="_blank" href="{% url 'compilacao:ta_text' dpt.ta.pk%}#{{dpt.pk}}" class="nomenclatura_heranca">{% nomenclatura_heranca dpt 1 1 %}</a>
|
|
</div>
|
|
</li>
|
|
{% endif%}
|
|
{% if forloop.last %}</ul>{% endif %}
|
|
{% endfor %}
|
|
|