mirror of https://github.com/interlegis/sapl.git
Edward
8 years ago
committed by
GitHub
5 changed files with 126 additions and 0 deletions
@ -0,0 +1,52 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load common_tags %} |
|||
|
|||
{% block actions %}{% endblock %} |
|||
|
|||
{% block detail_content %} |
|||
|
|||
<h1>{{nome_parlamentar}}</h1><br/> |
|||
<center><h2>Primeiro Autor</h2></center> |
|||
<br/> |
|||
<table class="table table-striped table-bordered"> |
|||
{% for autoria in autoria.0 %} |
|||
<thead class="thead-default"><tr><td><h3>Ano: {{ autoria.0 }}</h3></td></tr></thead> |
|||
{% for materias in autoria.1 %} |
|||
<tr> |
|||
<td>{{ materias.1 }} </td> |
|||
<td> |
|||
<a href="{% url 'sapl.materia:pesquisar_materia'%}?tipo={{materias.0}}&ano={{autoria.0}}&autoria__autor={{autor_pk}}&autoria__primeiro_autor=True"> |
|||
{{ materias.2}} |
|||
</a> |
|||
</td> |
|||
<td> {{ materias.3}}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
{%endfor %} |
|||
</table> |
|||
|
|||
<h2>Total: {{ autoria.1 }}</h2><br/> |
|||
|
|||
<center><h2>Co-Autor</h2></center> |
|||
<br/> |
|||
<table class="table table-striped table-bordered"> |
|||
{% for coautoria in coautoria.0 %} |
|||
<thead class="thead-default"><tr><td><h3>Ano: {{ coautoria.0 }}</h3></td></tr></thead> |
|||
{% for materias in coautoria.1 %} |
|||
<tr> |
|||
<td>{{ materias.1 }} </td> |
|||
<td> |
|||
<a href="{% url 'sapl.materia:pesquisar_materia'%}?tipo={{materias.0}}&ano={{coautoria.0}}&autoria__autor={{autor_pk}}&autoria__primeiro_autor=False"> |
|||
{{ materias.2}} |
|||
</a> |
|||
</td> |
|||
<td> {{ materias.3}}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
{%endfor %} |
|||
|
|||
<h2>Total: {{ coautoria.1 }}</h2><br/> |
|||
|
|||
|
|||
{% endblock detail_content %} |
Loading…
Reference in new issue