|
|
@ -6,17 +6,22 @@ |
|
|
|
{% endblock cabecalho %} |
|
|
|
|
|
|
|
{% block corpo %} |
|
|
|
<ul data-role="listview"> |
|
|
|
{% for diagnostico in diagnosticos %} |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<h3>{{ diagnostico.casa_legislativa.nome }}</h3> |
|
|
|
<p><strong>Data:</strong> {{ diagnostico.data_questionario|date:"d/m/Y" }}</p> |
|
|
|
<p><strong>Responsável:</strong> Nenhum Ainda</p> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
{% endfor %} |
|
|
|
</ul> |
|
|
|
{% if diagnosticos %} |
|
|
|
<ul data-role="listview"> |
|
|
|
|
|
|
|
{% for diagnostico in diagnosticos %} |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<h4>{{ diagnostico.casa_legislativa.nome }}</h4> |
|
|
|
<p><strong>Data:</strong> {{ diagnostico.data_questionario|date:"d/m/Y" }}</p> |
|
|
|
<p><strong>Responsável:</strong> Nenhum Ainda</p> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
{% endfor %} |
|
|
|
</ul> |
|
|
|
{% else %} |
|
|
|
<h2>Nenhum diagnóstico aberto.</h2> |
|
|
|
{% endif %} |
|
|
|
{% endblock corpo %} |
|
|
|
|
|
|
|
{% block rodape %} |
|
|
|