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.
53 lines
1.9 KiB
53 lines
1.9 KiB
9 years ago
|
{% extends "sessao/sessaoplenaria_detail.html" %}
|
||
|
{% load i18n %}
|
||
|
{% load crispy_forms_tags %}
|
||
|
|
||
|
{% block detail_content %}
|
||
|
|
||
9 years ago
|
<fieldset>
|
||
|
<legend>Oradores do Expediente</legend>
|
||
|
<ul class="small-block-grid-4 medium-block-grid-4 large-block-grid-4">
|
||
9 years ago
|
<li>Ordem de pronunciamento</li>
|
||
|
<li>Parlamentar</li>
|
||
|
<li>URL Discurso</li>
|
||
9 years ago
|
<li>Editar/Excluir</li>
|
||
9 years ago
|
</ul>
|
||
9 years ago
|
{% for numero_ordem, url_discurso, parlamentar in view.get_oradores %}
|
||
|
<ul class="small-block-grid-4 medium-block-grid-4 large-block-grid-4">
|
||
9 years ago
|
<li>{{numero_ordem}}</li>
|
||
9 years ago
|
<li>{{parlamentar.nome_parlamentar }}</li>
|
||
|
<li>{% if not url_discurso %}Orador sem discurso cadastrado{% else %}{{url_discurso}}{% endif %}</li>
|
||
9 years ago
|
<li>
|
||
|
<a id="editar-orador" href="{% url 'sessaoplenaria:oradoreditar' object.pk parlamentar.id %}">Editar</a>
|
||
|
/ <a id="excluir-orador" href="{% url 'sessaoplenaria:oradorexcluir' object.pk parlamentar.id %}">Excluir</a>
|
||
|
</li>
|
||
9 years ago
|
</ul>
|
||
|
{% endfor %}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset>
|
||
|
<legend>Adicionar Orador</legend>
|
||
9 years ago
|
<form method="POST" action="">
|
||
9 years ago
|
{% csrf_token %}
|
||
|
|
||
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3">
|
||
|
<li>Ordem de pronunciamento</li>
|
||
|
<li>Parlamentar</li>
|
||
|
<li>URL Discurso</li>
|
||
|
</ul>
|
||
|
|
||
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3">
|
||
|
<li><input type="text" id="numero_ordem" name="numero_ordem"/></li>
|
||
|
|
||
|
<li><select name="parlamentar" id="parlamentar">
|
||
|
{% for parlamentar in view.get_candidatos_orador %}
|
||
|
<option value="{{parlamentar.id}}">{{parlamentar.nome_parlamentar}}</option>
|
||
|
{% endfor %}
|
||
|
</select></li>
|
||
|
<li><input type="text" id="url_discurso" name="url_discurso" /></li>
|
||
|
</ul>
|
||
|
<input type="submit" value="Adicionar Orador" />
|
||
|
</form>
|
||
|
</fieldset>
|
||
9 years ago
|
{% endblock detail_content %}
|