mirror of https://github.com/interlegis/sapl.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.
77 lines
2.8 KiB
77 lines
2.8 KiB
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body { font-family: Arial, sans-serif; color: #333; background: #f5f5f5; margin: 0; padding: 0; }
|
|
.container { max-width: 600px; margin: 20px auto; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
|
|
.header { background: #343a40; padding: 24px 32px; text-align: center; }
|
|
.header h1 { color: #fff; margin: 0; font-size: 20px; }
|
|
.header p { color: #adb5bd; margin: 6px 0 0; font-size: 13px; }
|
|
.alert-bar { background: #ffc107; padding: 12px 32px; text-align: center; font-weight: bold; color: #212529; }
|
|
.body { padding: 28px 32px; }
|
|
.body p { line-height: 1.6; }
|
|
table { width: 100%; border-collapse: collapse; margin-top: 16px; }
|
|
th { background: #f8f9fa; text-align: left; padding: 8px 12px; font-size: 13px; color: #666; border-bottom: 2px solid #dee2e6; }
|
|
td { padding: 8px 12px; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
|
|
tr:last-child td { border-bottom: none; }
|
|
.btn { display: inline-block; margin-top: 20px; padding: 12px 28px; background: #ffc107; color: #212529; text-decoration: none; border-radius: 4px; font-weight: bold; }
|
|
.footer { background: #f8f9fa; padding: 16px 32px; text-align: center; font-size: 12px; color: #aaa; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>{{ casa_legislativa }}</h1>
|
|
<p>Sistema de Gestão e Votação Parlamentar</p>
|
|
</div>
|
|
|
|
<div class="alert-bar">
|
|
🔔 {{ total }} matéria(s) aguardando sua assinatura digital
|
|
</div>
|
|
|
|
<div class="body">
|
|
<p>Olá, <strong>{{ nome_autor }}</strong>.</p>
|
|
<p>
|
|
As seguintes matérias legislativas estão com <strong>assinatura digital pendente</strong>
|
|
e precisam da sua atenção:
|
|
</p>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Matéria</th>
|
|
<th>Ementa</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for m in materias %}
|
|
<tr>
|
|
<td>{{ forloop.counter }}</td>
|
|
<td><strong>{{ m.tipo.sigla }} {{ m.numero }}/{{ m.ano }}</strong></td>
|
|
<td style="color:#555;">{{ m.ementa|truncatechars:80 }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% if total_omitidas %}
|
|
<p style="color:#888; font-size:13px;">
|
|
… e mais {{ total_omitidas }} outra(s) matéria(s) não listada(s) acima.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<a class="btn" href="{{ base_url }}{{ url_pesquisa }}">
|
|
Acessar matérias pendentes →
|
|
</a>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>Esta é uma mensagem automática. Por favor, não a responda.</p>
|
|
<p>© {{ casa_legislativa }}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|