-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotimixBasico.html
More file actions
43 lines (32 loc) · 2.09 KB
/
NotimixBasico.html
File metadata and controls
43 lines (32 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sending emails to user in Python</title>
</head>
<body>
{% if actualizados.count > 0 %}
NOTIFICACIÓN DE ACTUALIZACIONES {{ fecha }}<br><br>
Causas activas: {{ sigue }}<br>
Causas actualizadas: {{ actualizados.count }}<br>
Causas revisadas: {{ totales }}<br>
{% for caso in actualizados %}<br>
Causa {{ caso.caso.tribunal.tipo }}: {{ caso.caso.dte_nombre }} ({{ caso.caso }}) actualizado el {{ fecha }}<br>
Descripción actualización: {{ caso.caso.last_chenge_coment }}<br>
{% if historias.count > 0 %}
{% for h in historias %}
{% if h.cuaderno.caso.id == caso.caso.id %}
Tramite: {{ h.tramite }}, {{ h.desc_tramite }}. <br>{% if h.archivo != None %}
Documento: {% if h.cuaderno.caso.tribunal.tipo == 'civil' %}https://civil.pjud.cl/{{ h.archivo }}{% endif %}<br>{% endif %} {% if h.archivo_2 != None %}
Anexo: {% if h.cuaderno.caso.tribunal.tipo == 'civil' %}https://civil.pjud.cl/{{ h.archivo_2 }}{% endif %}<br> {% endif %}
{% endif %}
{% endfor %}
{% endif %} {% if escritos.count > 0 %}{% for e in escritos %}{% if e.cuaderno.caso.id == caso.caso.id %}
Escrito por resolver: {{ e.tipo_escrito }}.<br> {% if e.doc != None %}
Documento: {% if e.cuaderno.caso.tribunal.tipo == 'civil' %}https://civil.pjud.cl/{{ e.doc }}{% endif %}<br>{% endif %} {% if e.anexo != None %}
Anexo: {% if h.cuaderno.caso.tribunal.tipo == 'civil' %}https://civil.pjud.cl/{{ e.anexo }}{% endif %}<br> {% endif %}
{% endif %}{% endfor %}{% endif %}{% endfor %}{% endif %}<br><br>
Revisa mas detalles de tus actualizaciones en www.paralegapp.com
¡Gracias por usar ParalegApp!
</body>
</html>