Browse Source

Merge branch '1934-ordenar-protocolo' of https://github.com/interlegis/sapl into 1934-ordenar-protocolo

pull/2033/head
Talitha 8 years ago
parent
commit
8281c1127a
  1. 5
      sapl/templates/materia/prop_pendentes_list.html

5
sapl/templates/materia/prop_pendentes_list.html

@ -4,11 +4,12 @@
{% load common_tags %} {% load common_tags %}
{% block base_content %} {% block base_content %}
<fieldset> <fieldset>
<p id='sort_list' ></p>
<legend>Proposições Não Recebidas</legend> <legend>Proposições Não Recebidas</legend>
{% if not object_list %} {% if not object_list %}
<p>{{ NO_ENTRIES_MSG }}</p> <p>{{ NO_ENTRIES_MSG }}</p>
{% else %} {% else %}
<table class="table table-striped table-hover"> <table class="table">
<thead> <thead>
<tr> <tr>
{% with 'Data Envio,Tipo,Descrição,Autor' as list %} {% with 'Data Envio,Tipo,Descrição,Autor' as list %}
@ -46,7 +47,7 @@
</td> </td>
<td>{{ prop.tipo.descricao }}</td> <td>{{ prop.tipo.descricao }}</td>
<td>{{ prop.descricao }}</td> <td>{{ prop.descricao }}</td>
<td>{{prop.autor}}</td> <td>{{prop.autor.nome }} - {{prop.autor.cargo }}</td>
<td> <td>
{% if not AppConfig.receber_recibo_proposicao %} {% if not AppConfig.receber_recibo_proposicao %}
{%if prop.hash_code %} {%if prop.hash_code %}

Loading…
Cancel
Save