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.
52 lines
1.8 KiB
52 lines
1.8 KiB
{% extends "materia/materialegislativa_detail.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block detail_content %}
|
|
<fieldset>
|
|
<legend>Matéria Legislativa</legend>
|
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3">
|
|
<li>Tipo: <b>{{materialegislativa.tipo.sigla}}</b></li>
|
|
<li>Número: <b>{{materialegislativa.numero}}</b></li>
|
|
<li>Ano: <b>{{materialegislativa.ano}}</b></li>
|
|
</ul>
|
|
Ementa: <b>{{materialegislativa.ementa}}</b>
|
|
|
|
<fieldset>
|
|
<legend>Editar Numeração</legend>
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
<ul class="small-block-grid-1 medium-block-grid-1 large-block-grid-1">
|
|
<li>
|
|
<label>Tipo Matéria*</label>
|
|
<select name="tipo_materialegislativa">
|
|
{% for t in tipos %}
|
|
<option value="{{t.id}}" {% if t.id == numeracao.tipo_materialegislativa_id %} selected {% endif %}>
|
|
{{t.sigla}} - {{t.descricao}}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3">
|
|
<li>
|
|
<label>Número*</select>label>
|
|
<input type="text" name="numero_materialegislativa" value="{{numeracao.numero_materialegislativa}}" />
|
|
</li>
|
|
<li>
|
|
<label>Ano*</label>
|
|
<input type="text" name="ano_materialegislativa" value="{{numeracao.ano_materialegislativa}}" />
|
|
</li>
|
|
<li>
|
|
<label>Data</label>
|
|
<input type="text" name="data_materialegislativa" class="dateinput" value="{{numeracao.data_materialegislativa|date:'d/m/Y'}}" />
|
|
</li>
|
|
<ul>
|
|
|
|
<input type="submit" value="Salvar" id="salvar" name="salvar" class="primary button" />
|
|
<input type="submit" value="Excluir" id="excluir" name="excluir" class="primary button" />
|
|
</form>
|
|
</fieldset>
|
|
</fieldset>
|
|
{% endblock %}
|