mirror of https://github.com/interlegis/sigi.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.
26 lines
871 B
26 lines
871 B
{% extends "admin/base_site.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
{% if object_list|length >= 1 %}
|
|
<fieldset>
|
|
<legend>Lista para atesto de responsável</legend>
|
|
<table class="table table-striped table-bordered">
|
|
<thead class="thead-default">
|
|
<tr>
|
|
<th>Nome Usuário</th>
|
|
<th>Casa Legislativa</th>
|
|
</tr>
|
|
</thead>
|
|
{% for object in object_list %}
|
|
<tr>
|
|
<td><a href="{% url 'usuarios:responsavel_update' object.pk %}">{{object.nome_completo}}</a></td>
|
|
<td>{{object.casa_legislativa}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</fieldset>
|
|
{% else %}
|
|
<p align='center'><font size='4'>Não há nenhum usuário para ser verificado.</font></p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|