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.
54 lines
3.1 KiB
54 lines
3.1 KiB
{% load crispy_forms_filters %}
|
|
{% load i18n compilacao_filters common_tags%}
|
|
|
|
|
|
<div class="controls lista-dispositvo"{% if flat_attrs %} {{ flat_attrs|safe }}{% endif %}>
|
|
{% include 'bootstrap/layout/field_errors_block.html' %}
|
|
|
|
|
|
|
|
|
|
{% for choice, dpt in field.field.choices %}
|
|
{% ifchanged dpt.ta%}
|
|
{% if not forloop.first %}</ul>{% endif %}
|
|
<ul id="ta{{dpt.ta.pk}}">
|
|
<li class="ta_title">{{dpt.ta}}</li>
|
|
{% endifchanged %}
|
|
{% if dpt.is_relative_auto_insert %}
|
|
<li>
|
|
<div class="iteminput">
|
|
<input type="{{field.field.widget.attrs|lookup:"data-type-selection"}}" name="{{ field.html_name }}" id="dpt{{dpt.pk}}" value="{{dpt.pk}}" {% if choice in field.value or choice|stringformat:"s" in field.value or choice|stringformat:"s" == field.value|stringformat:"s" %} checked="checked"{% endif %} />
|
|
</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" title="{% trans 'Abrir Texto deste Dispositivo'%}">{% nomenclatura_heranca dpt 1 1 %}</a>
|
|
</div>
|
|
</li>
|
|
{% elif not dpt.tipo_dispositivo.dispositivo_de_articulacao and not dpt.is_relative_auto_insert %}
|
|
<li>
|
|
<div class="iteminput">
|
|
<input type="{{field.field.widget.attrs|lookup:"data-type-selection"}}" name="{{ field.html_name }}" id="dpt{{dpt.pk}}" value="{{dpt.pk}}" {% if choice in field.value or choice|stringformat:"s" in field.value or choice|stringformat:"s" == field.value|stringformat:"s" %} checked="checked"{% endif %} />
|
|
</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" title="{% trans 'Abrir Texto deste Dispositivo'%}">{% nomenclatura_heranca dpt 1 1 %}</a>
|
|
</div>
|
|
</li>
|
|
{% elif dpt.tipo_dispositivo.dispositivo_de_articulacao%}
|
|
<li>
|
|
<div class="iteminput">
|
|
<input type="{{field.field.widget.attrs|lookup:"data-type-selection"}}" name="{{ field.html_name }}" id="dpt{{dpt.pk}}" value="{{dpt.pk}}" {%if choice in field.value or choice|stringformat:"s" in field.value or choice|stringformat:"s" == field.value|stringformat:"s" %} checked="checked"{% endif %} />
|
|
</div>
|
|
<div class="itemlabel">
|
|
<label for="r{{dpt.pk}}">{{dpt.rotulo|safe}} - {% if dpt.tipo_dispositivo.dispositivo_de_articulacao %}{{dpt.dispositivos_filhos_set.all.first.texto|safe}}{% else %}{{dpt.texto|safe}}{% endif %}</label>
|
|
<a target="_blank" href="{% url 'compilacao:ta_text' dpt.ta.pk%}#{{dpt.pk}}" class="nomenclatura_heranca" title="{% trans 'Abrir Texto deste Dispositivo'%}">{% nomenclatura_heranca dpt 1 1 %}</a>
|
|
</div>
|
|
</li>
|
|
{% endif%}
|
|
{% if forloop.last %}</ul>{% endif %}
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% include 'bootstrap/layout/help_text.html' %}
|
|
</div>
|
|
|