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.
36 lines
1.2 KiB
36 lines
1.2 KiB
{% extends "base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block base_content %}
|
|
|
|
{# FIXME is this the best markup to use? #}
|
|
<dl class="sub-nav">
|
|
<dd><a href="{{ view.update_url }}">
|
|
{% blocktrans with verbose_name=view.verbose_name %} Editar {{ verbose_name }} {% endblocktrans %}
|
|
</a></dd>
|
|
<dd><a href="{{ view.delete_url }}">
|
|
{% blocktrans with verbose_name=view.verbose_name %} Excluir {{ verbose_name }} {% endblocktrans %}
|
|
</a></dd>
|
|
</dl>
|
|
|
|
{# TODO replace fieldset for something semantically correct, but with similar visual grouping style #}
|
|
{% for fieldset in view.fieldsets %}
|
|
<fieldset>
|
|
<legend>{{ fieldset.legend }}</legend>
|
|
{% for row in fieldset.rows %}
|
|
<div class="row">
|
|
{% for column in row %}
|
|
<div class="columns large-{{ column.span }}">
|
|
<div id="div_id_{{ column.id }}" class="holder">
|
|
<label>{{ column.verbose_name }}</label> {# TODO replace labels, probably (are they correct here?) #}
|
|
<p>{{ column.text }}</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</fieldset>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
|