mirror of https://github.com/interlegis/sapl.git
LeandroRoberto
9 years ago
6 changed files with 52 additions and 80 deletions
@ -1,54 +0,0 @@ |
|||
{% 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> |
Loading…
Reference in new issue