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.
18 lines
531 B
18 lines
531 B
9 years ago
|
{% load compilacao_filters %}
|
||
|
|
||
|
{% for ch in dispositivo.pk|get_bloco %}
|
||
|
|
||
|
<div class="dispositivo" id="d{{ch.id}}">
|
||
|
<div class="{{ ch.tipo_dispositivo.class_css }}" id="{{ch.id}}" nivel="{{ch.nivel}}">
|
||
|
|
||
|
{{ ch.tipo_dispositivo.rotulo_prefixo_html|safe }}
|
||
|
<a name="ch.pk" href="{%url 'compilacao' ch.norma.pk %}#{{ch.pk}}">
|
||
|
{{ ch.rotulo }}
|
||
|
</a>
|
||
|
{{ ch.tipo_dispositivo.rotulo_sufixo_html|safe }}
|
||
|
|
||
|
{{ ch.tipo_dispositivo.texto_prefixo_html|safe }}
|
||
|
{{ ch.texto|safe }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|