mirror of https://github.com/interlegis/sapl.git
Browse Source
* cria impresso de indice de normas * ajustes * ajustes * Ordena Resultado * Ordena Resultado * arquivo faltando * altera nome classe de pesquisa * Update views.py Substitui criação explícita de dict por um literal.pull/1642/head
Rogério Frá
7 years ago
committed by
Edward
6 changed files with 173 additions and 2 deletions
@ -0,0 +1,7 @@ |
|||
{% extends "crud/form.html" %} |
|||
{% load i18n crispy_forms_tags %} |
|||
|
|||
{% block base_content %} |
|||
<h1 class="page-header">Impressos</h1> |
|||
{% crispy form %} |
|||
{% endblock base_content %} |
@ -0,0 +1,41 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
|
|||
<head> |
|||
<title>Impressos</title> |
|||
<meta charset="utf-8"> |
|||
</head> |
|||
|
|||
<style type="text/css"> |
|||
.text_pdf{ |
|||
font-family: arial; |
|||
font-size: 70%; |
|||
} |
|||
</style> |
|||
|
|||
<body style="margin-left:10px;margin-right:-50px; margin-top: -50px; text-align: justify"> |
|||
|
|||
{% if quantidade > 30 %} |
|||
<b><p class="alert_message">Sua pesquisa retornou mais do que 2000 impressos.</p><p class="alert_message">Por questões de performance, foram retornados apenas os 2000 primeiros.</p></b> |
|||
</br></br></br> |
|||
{% endif %} |
|||
|
|||
|
|||
{% for m in normas %} |
|||
<table> |
|||
<tr> |
|||
<td style="width:200px; vertical-align:top;"><span class="text_pdf"> {{m.tipo}} nº </span><span class="text_pdf"> {{m.numero}}, de {{m.data|date:"d/m/Y" }} </span> |
|||
</td> |
|||
<td> |
|||
</td> |
|||
<td style="width:450px; vertical-align:top;"><span class="text_pdf">{{m.ementa}}</span> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</br> |
|||
|
|||
{% endfor %} |
|||
|
|||
|
|||
|
|||
</body> |
Loading…
Reference in new issue