assemblerpdf 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. assemblerpdf/__init__.py +16 -0
  2. assemblerpdf/assemblers/__init__.py +9 -0
  3. assemblerpdf/assemblers/base.py +120 -0
  4. assemblerpdf/assemblers/form.py +257 -0
  5. assemblerpdf/assemblers/report.py +44 -0
  6. assemblerpdf/core.py +193 -0
  7. assemblerpdf/fonts/Inter-Bold.ttf +0 -0
  8. assemblerpdf/fonts/Inter-Medium.ttf +0 -0
  9. assemblerpdf/fonts/Inter-Regular.ttf +0 -0
  10. assemblerpdf/img/Logo-unp-rojo.png +0 -0
  11. assemblerpdf/img/logo-mininterior-rojo.jpg +0 -0
  12. assemblerpdf/templates/assemblerpdf/checkbox.html +16 -0
  13. assemblerpdf/templates/assemblerpdf/footer.html +16 -0
  14. assemblerpdf/templates/assemblerpdf/grid_row.html +7 -0
  15. assemblerpdf/templates/assemblerpdf/header.html +19 -0
  16. assemblerpdf/templates/assemblerpdf/input.html +12 -0
  17. assemblerpdf/templates/assemblerpdf/radio.html +14 -0
  18. assemblerpdf/templates/assemblerpdf/section.html +6 -0
  19. assemblerpdf/templates/assemblerpdf/signature.html +14 -0
  20. assemblerpdf/templates/assemblerpdf/style.html +318 -0
  21. assemblerpdf/templates/assemblerpdf/textarea.html +12 -0
  22. assemblerpdf/templates/sistema/anexos.html +38 -0
  23. assemblerpdf/templates/sistema/anexos_limpio.html +52 -0
  24. assemblerpdf/templates/sistema/archivese.html +18 -0
  25. assemblerpdf/templates/sistema/autoriza_envio.html +33 -0
  26. assemblerpdf/templates/sistema/checkbox.html +41 -0
  27. assemblerpdf/templates/sistema/control_cambios.html +43 -0
  28. assemblerpdf/templates/sistema/datos_basicosinf.html +16 -0
  29. assemblerpdf/templates/sistema/datos_ot.html +33 -0
  30. assemblerpdf/templates/sistema/encaso_de.html +5 -0
  31. assemblerpdf/templates/sistema/fiila_dos_check.html +54 -0
  32. assemblerpdf/templates/sistema/fila_cinco_zona.html +54 -0
  33. assemblerpdf/templates/sistema/fila_cuatro.html +20 -0
  34. assemblerpdf/templates/sistema/fila_cuatro_si_no.html +46 -0
  35. assemblerpdf/templates/sistema/fila_cuatro_zona.html +48 -0
  36. assemblerpdf/templates/sistema/fila_dos.html +12 -0
  37. assemblerpdf/templates/sistema/fila_dos_zona.html +40 -0
  38. assemblerpdf/templates/sistema/fila_instructivo.html +16 -0
  39. assemblerpdf/templates/sistema/fila_tres.html +16 -0
  40. assemblerpdf/templates/sistema/fila_tres_checkbox.html +66 -0
  41. assemblerpdf/templates/sistema/fila_tres_zona.html +45 -0
  42. assemblerpdf/templates/sistema/fila_uno.html +8 -0
  43. assemblerpdf/templates/sistema/firma.html +10 -0
  44. assemblerpdf/templates/sistema/firma_doble.html +32 -0
  45. assemblerpdf/templates/sistema/firmaop2.html +17 -0
  46. assemblerpdf/templates/sistema/firmas_oficializacion.html +66 -0
  47. assemblerpdf/templates/sistema/hechos_sobrevinientes.html +261 -0
  48. assemblerpdf/templates/sistema/hechos_sobrevinientes_vacio.html +209 -0
  49. assemblerpdf/templates/sistema/iformfilacuatro.html +20 -0
  50. assemblerpdf/templates/sistema/informacion_doble.html +0 -0
  51. assemblerpdf/templates/sistema/input_2checks.html +98 -0
  52. assemblerpdf/templates/sistema/input_check.html +40 -0
  53. assemblerpdf/templates/sistema/input_checkbox.html +53 -0
  54. assemblerpdf/templates/sistema/input_solitario.html +9 -0
  55. assemblerpdf/templates/sistema/label_input_dos.html +24 -0
  56. assemblerpdf/templates/sistema/leyenda_autoriza_correo.html +8 -0
  57. assemblerpdf/templates/sistema/leyenda_superiol.html +5 -0
  58. assemblerpdf/templates/sistema/logos.html +4 -0
  59. assemblerpdf/templates/sistema/manifiesto.html +41 -0
  60. assemblerpdf/templates/sistema/notificacion_correo.html +14 -0
  61. assemblerpdf/templates/sistema/oficializacion.html +21 -0
  62. assemblerpdf/templates/sistema/pregunta_si_no.html +34 -0
  63. assemblerpdf/templates/sistema/pregunta_tresopciones.html +47 -0
  64. assemblerpdf/templates/sistema/qr_oficializacion.html +7 -0
  65. assemblerpdf/templates/sistema/situacion_amenaza.html +82 -0
  66. assemblerpdf/templates/sistema/style.html +228 -0
  67. assemblerpdf/templates/sistema/subtitulo_icono.html +6 -0
  68. assemblerpdf/templates/sistema/subtitulo_icono_largo.html +6 -0
  69. assemblerpdf/templates/sistema/tabla_doble.html +15 -0
  70. assemblerpdf/templates/sistema/tabla_instructivo.html +12 -0
  71. assemblerpdf/templates/sistema/tabla_matriz_riesgo.html +135 -0
  72. assemblerpdf/templates/sistema/tabla_proyeccion.html +37 -0
  73. assemblerpdf/templates/sistema/tabla_simple.html +187 -0
  74. assemblerpdf/templates/sistema/texarea.html +9 -0
  75. assemblerpdf/templates/sistema/tipo_identificacion.html +55 -0
  76. assemblerpdf/templates/sistema/tipos_checkbox.html +47 -0
  77. assemblerpdf/templates/sistema/titulo.html +6 -0
  78. assemblerpdf/templates/sistema/titulo_logo.html +22 -0
  79. assemblerpdf/templates/sistema/titulo_principal.html +5 -0
  80. assemblerpdf/utils/__init__.py +1 -0
  81. assemblerpdf/utils/template_loader.py +48 -0
  82. assemblerpdf-1.0.0.dist-info/METADATA +86 -0
  83. assemblerpdf-1.0.0.dist-info/RECORD +85 -0
  84. assemblerpdf-1.0.0.dist-info/WHEEL +5 -0
  85. assemblerpdf-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,66 @@
1
+ <!-- templates/components/firmas_elaboracion.html -->
2
+ <div class="ofi" style="margin-top: 0px;">
3
+ <table>
4
+ <!-- Encabezado "FIRMAS DE ELABORACIÓN, REVISIÓN Y APROBACIÓN DEL DOCUMENTO" -->
5
+ <tr>
6
+ <th class="v-inicial" style="background-color: #303d50; text-align: left; border-right: none; border-left: none; border-top: none; padding: 10px 0 10px 10px;" colspan="2">
7
+ <p style="font-size: 14px; padding: 0px 2px; text-align: center; margin: 0; color: aliceblue;">FIRMAS DE ELABORACIÓN, REVISIÓN Y APROBACIÓN DEL DOCUMENTO</p>
8
+ </th>
9
+ </tr>
10
+
11
+ <!-- Fila "Elaboró" -->
12
+ <tr>
13
+ <td class="v-descripcion" style="text-align: left; border-top: none; border-left: none; padding: 10px 0 10px 10px;">
14
+ <p>
15
+ <b>Elaboró</b><br>
16
+ <b>Nombre:</b> {{ firmas.elaboro.nombre }}<br>
17
+ <b>Cargo:</b> {{ firmas.elaboro.cargo }}
18
+ </p>
19
+ </td>
20
+ <td class="v-inicial" style="text-align: left; border-top: none; border-right: none; border-left: none; padding: 10px 0 10px 10px;"></td>
21
+ </tr>
22
+
23
+ <!-- Fila "Revisó" -->
24
+ <tr>
25
+ <td class="v-descripcion" style="text-align: left; border-top: none; border-left: none; padding: 10px 0 10px 10px;">
26
+ <p>
27
+ <b>Revisó</b><br>
28
+ <b>Nombre:</b> {{ firmas.reviso.nombre }}<br>
29
+ <b>Cargo:</b> {{ firmas.reviso.cargo }}
30
+ </p>
31
+ </td>
32
+ <td class="v-inicial" style="text-align: left; border-top: none; border-right: none; border-left: none; padding: 10px 0 10px 10px;"></td>
33
+ </tr>
34
+
35
+ <!-- Fila "Aprobó" -->
36
+ <tr>
37
+ <td class="v-descripcion" style="text-align: left; border-top: none; border-left: none; padding: 10px 0 10px 10px;">
38
+ <p>
39
+ <b>Aprobó</b><br>
40
+ <b>Nombre:</b> {{ firmas.aprobo.nombre }}<br>
41
+ <b>Cargo:</b> {{ firmas.aprobo.cargo }}
42
+ </p>
43
+ </td>
44
+ <td class="v-inicial" style="text-align: left; border-top: none; border-right: none; border-left: none; padding: 10px 0 10px 10px;"></td>
45
+ </tr>
46
+
47
+ <!-- Encabezado "FIRMA DE OFICIALIZACIÓN DEL DOCUMENTO" -->
48
+ <tr style="text-align: center;">
49
+ <th class="v-inicial" style="background-color: #303d50; min-width: 500px; text-align: left; border-right: none; border-left: none; border-top: none; padding: 10px 0 10px 10px;" colspan="2">
50
+ <p style="text-align: center; font-size: 14px; padding: 0px 2px; margin: 0; color: aliceblue;">FIRMA DE OFICIALIZACIÓN DEL DOCUMENTO - SISTEMA INTEGRADO DE GESTIÓN MIPG-SIG</p>
51
+ </th>
52
+ </tr>
53
+
54
+ <!-- Fila "Oficializó" -->
55
+ <tr>
56
+ <td class="v-descripcion" style="text-align: left; border-bottom: 1px solid #303d50; border-left: none; padding: 10px 0 10px 10px;">
57
+ <p>
58
+ <b>Oficializó</b><br>
59
+ <b>Nombre:</b> {{ firmas.oficializo.nombre }}<br>
60
+ <b>Cargo:</b> {{ firmas.oficializo.cargo }}
61
+ </p>
62
+ </td>
63
+ <td class="v-inicial" style="text-align: left; border-bottom: 1px solid #303d50; border-right: none; border-left: none; padding: 10px 0 10px 10px;"></td>
64
+ </tr>
65
+ </table>
66
+ </div>
@@ -0,0 +1,261 @@
1
+ <!-- hechos_sobrevinientes.html -->
2
+ <div style="background-color: #303d50; min-height:25px; width: 100%; margin: 0;">
3
+ <p style="font-size: 18px; color: white; font-weight: 700; text-align: left; margin: 0 20px; padding: 10px 10px 10px 0;">
4
+ Hechos Sobrevinientes
5
+ </p>
6
+ </div>
7
+
8
+ <div class="subtitulo">
9
+ <i class="fa-solid fa-align-left"></i>
10
+ <p style="font-size: 16px; color: #002857; font-weight: 700; text-align: left; margin: 0px">
11
+ Situación de amenaza y medio por el que se presentó
12
+ </p>
13
+ </div>
14
+
15
+ <!-- Situación de amenaza -->
16
+ <div class="columna" style="padding-top: 0px;">
17
+ <p style="font-size: 14px; color: #002857; font-weight: 500; text-align: left; margin: 10px 20px 10px 20px">
18
+ 25. Situación de amenaza *
19
+ </p>
20
+ </div>
21
+
22
+ <div class="especial-dos" style="margin-bottom: 10px;">
23
+ <table style="margin-top: 4px;">
24
+ <tr>
25
+ <td class="celda-i" style="width: 980px">
26
+ <div style="position: relative; height: 35px;">
27
+ <!-- Amenaza -->
28
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px; margin: 0px;">
29
+ <div style="position: relative;">
30
+ {% if id_situacion == 1 %}
31
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
32
+ {% else %}
33
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
34
+ {% endif %}
35
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
36
+ Amenaza (propia o de familiares)
37
+ </p>
38
+ </div>
39
+ </div>
40
+
41
+ <!-- Atentado -->
42
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px; margin: 0px;">
43
+ <div style="position: relative;">
44
+ {% if id_situacion == 2 %}
45
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
46
+ {% else %}
47
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
48
+ {% endif %}
49
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
50
+ Atentado (propio o de familiares)
51
+ </p>
52
+ </div>
53
+ </div>
54
+
55
+ <!-- Secuestro -->
56
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px; margin: 0px;">
57
+ <div style="position: relative;">
58
+ {% if id_situacion == 3 %}
59
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
60
+ {% else %}
61
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
62
+ {% endif %}
63
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
64
+ Secuestro (propio o de familiares)
65
+ </p>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </td>
70
+ </tr>
71
+ </table>
72
+
73
+ <table>
74
+ <tr>
75
+ <td class="celda-i" style="width: 980px">
76
+ <div style="position: relative; height: 35px;">
77
+ <!-- Homicidio -->
78
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
79
+ <div style="position: relative;">
80
+ {% if id_situacion == 4 %}
81
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
82
+ {% else %}
83
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
84
+ {% endif %}
85
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
86
+ Homicidio de familiar(es)
87
+ </p>
88
+ </div>
89
+ </div>
90
+
91
+ <!-- Extorsión -->
92
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px;">
93
+ <div style="position: relative;">
94
+ {% if id_situacion == 5 %}
95
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
96
+ {% else %}
97
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
98
+ {% endif %}
99
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
100
+ Extorsión
101
+ </p>
102
+ </div>
103
+ </div>
104
+
105
+ <!-- Reclutamiento ilegal -->
106
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px;">
107
+ <div style="position: relative;">
108
+ {% if id_situacion == 6 %}
109
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
110
+ {% else %}
111
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
112
+ {% endif %}
113
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
114
+ Reclutamiento ilegal
115
+ </p>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </td>
120
+ </tr>
121
+ </table>
122
+
123
+ <table>
124
+ <tr>
125
+ <td class="celda-i" style="width: 156px">
126
+ <div style="position: relative; height: 35px;">
127
+ <!-- Otra -->
128
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
129
+ <div style="position: relative;">
130
+ {% if id_situacion == 7 %}
131
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
132
+ {% else %}
133
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
134
+ {% endif %}
135
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
136
+ Otra
137
+ </p>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </td>
142
+ </tr>
143
+ </table>
144
+ </div>
145
+
146
+ <!-- Medio por el que se presentó -->
147
+ <div class="columna" style="padding-top: 0px;">
148
+ <p style="font-size: 14px; color: #002857; font-weight: 500; text-align: left; margin: 10px 20px 10px 20px">
149
+ 26. Medio por el que se presentó *
150
+ </p>
151
+ </div>
152
+
153
+ <div class="especial-dos" style="margin-bottom: 10px;">
154
+ <table style="margin-top: 4px;">
155
+ <tr>
156
+ <td class="celda-i" style="width: 980px">
157
+ <div style="position: relative; height: 35px;">
158
+ <!-- Telefónica -->
159
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
160
+ <div style="position: relative;">
161
+ {% if id_medio == 1 %}
162
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
163
+ {% else %}
164
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
165
+ {% endif %}
166
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
167
+ Telefónica
168
+ </p>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Verbal -->
173
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px;">
174
+ <div style="position: relative;">
175
+ {% if id_medio == 2 %}
176
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
177
+ {% else %}
178
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
179
+ {% endif %}
180
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
181
+ Verbal
182
+ </p>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Escrita -->
187
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px;">
188
+ <div style="position: relative;">
189
+ {% if id_medio == 3 %}
190
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
191
+ {% else %}
192
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
193
+ {% endif %}
194
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
195
+ Escrita
196
+ </p>
197
+ </div>
198
+ </div>
199
+ </div>
200
+ </td>
201
+ </tr>
202
+ </table>
203
+
204
+ <table style="margin-top: 4px;">
205
+ <tr>
206
+ <td class="celda-i" style="width: 980px">
207
+ <div style="position: relative; height: 35px;">
208
+ <!-- A través de terceros -->
209
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
210
+ <div style="position: relative;">
211
+ {% if id_medio == 4 %}
212
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
213
+ {% else %}
214
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
215
+ {% endif %}
216
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
217
+ A través de terceros
218
+ </p>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Simbólica -->
223
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px;">
224
+ <div style="position: relative;">
225
+ {% if id_medio == 5 %}
226
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
227
+ {% else %}
228
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
229
+ {% endif %}
230
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
231
+ Simbólica
232
+ </p>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Redes sociales -->
237
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px;">
238
+ <div style="position: relative;">
239
+ {% if id_medio == 6 %}
240
+ <i class="fa-regular fa-square-check" style="position: absolute; left: 0; font-size: 30px; color: #888;"></i>
241
+ {% else %}
242
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
243
+ {% endif %}
244
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
245
+ Redes sociales
246
+ </p>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ </td>
251
+ </tr>
252
+ </table>
253
+ </div>
254
+
255
+ <!-- Fecha y lugar del suceso -->
256
+ {% include "sistema/subtitulo_icono.html" with icono="fa-solid fa-calendar" titulo="Fecha y lugar del suceso" %}
257
+
258
+ {% include "sistema/fila_cuatro_zona.html" with label1="27. Fecha *" ancho1="20%" valor1=fecha_hecho label2="28. Departamento *" ancho2="20%" valor2=departamento_hecho label3="29. Municipio *" ancho3="20%" valor3=municipio_hecho label4="30. Zona *" ancho4="25%" valor4=zona_hecho %}
259
+
260
+ <!-- Relato del hecho -->
261
+ {% include "sistema/texarea.html" with label="31. Relato Hechos" alto="594px" valor=relato_hecho %}
@@ -0,0 +1,209 @@
1
+ <!--Sección: situacion amenaza-->
2
+ <div style="background-color: #303d50; min-height:25px; width: 100%; margin: 0;">
3
+ <p style="font-size: 18px; color: white; font-weight: 700; text-align: left; margin: 0 20px; padding: 10px 10px 10px 0;">
4
+ Hechos Sobrevinientes
5
+ </p>
6
+ </div>
7
+
8
+ <div class="subtitulo">
9
+ <i class="fa-solid fa-align-left"></i>
10
+ <p style="font-size: 16px; color: #002857; font-weight: 700; text-align: left; margin: 0px">
11
+ Situación de amenaza y medio por el que se presentó
12
+ </p>
13
+ </div>
14
+
15
+ <!-- Situación de amenaza -->
16
+ <div class="columna" style="padding-top: 0px;">
17
+ <p style="font-size: 14px; color: #002857; font-weight: 500; text-align: left; margin: 10px 20px 10px 20px">
18
+ 25. Situación de amenaza *
19
+ </p>
20
+ </div>
21
+
22
+ <div class="especial-dos" style="margin-bottom: 10px;">
23
+ <table style="margin-top: 4px;">
24
+ <tr>
25
+ <td class="celda-i" style="width: 980px">
26
+ <div style="position: relative; height: 35px;">
27
+ <!-- Amenaza -->
28
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px; margin: 0px;">
29
+ <div style="position: relative;">
30
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
31
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
32
+ Amenaza (propia o de familiares)
33
+ </p>
34
+ </div>
35
+ </div>
36
+
37
+ <!-- Atentado -->
38
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px; margin: 0px;">
39
+ <div style="position: relative;">
40
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
41
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
42
+ Atentado (propio o de familiares)
43
+ </p>
44
+ </div>
45
+ </div>
46
+
47
+ <!-- Secuestro -->
48
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px; margin: 0px;">
49
+ <div style="position: relative;">
50
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
51
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
52
+ Secuestro (propio o de familiares)
53
+ </p>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </td>
58
+ </tr>
59
+ </table>
60
+
61
+ <table>
62
+ <tr>
63
+ <td class="celda-i" style="width: 980px">
64
+ <div style="position: relative; height: 35px;">
65
+ <!-- Homicidio -->
66
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
67
+ <div style="position: relative;">
68
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
69
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
70
+ Homicidio de familiar(es)
71
+ </p>
72
+ </div>
73
+ </div>
74
+
75
+ <!-- Extorsión -->
76
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px;">
77
+ <div style="position: relative;">
78
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
79
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
80
+ Extorsión
81
+ </p>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Reclutamiento ilegal -->
86
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px;">
87
+ <div style="position: relative;">
88
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
89
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
90
+ Reclutamiento ilegal
91
+ </p>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </td>
96
+ </tr>
97
+ </table>
98
+
99
+ <table>
100
+ <tr>
101
+ <td class="celda-i" style="width: 156px">
102
+ <div style="position: relative; height: 35px;">
103
+ <!-- Otra -->
104
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
105
+ <div style="position: relative;">
106
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
107
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
108
+ Otra
109
+ </p>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </td>
114
+ </tr>
115
+ </table>
116
+ </div>
117
+
118
+ <!-- Medio por el que se presentó -->
119
+ <div class="columna" style="padding-top: 0px;">
120
+ <p style="font-size: 14px; color: #002857; font-weight: 500; text-align: left; margin: 10px 20px 10px 20px">
121
+ 26. Medio por el que se presentó *
122
+ </p>
123
+ </div>
124
+
125
+ <div class="especial-dos" style="margin-bottom: 10px;">
126
+ <table style="margin-top: 4px;">
127
+ <tr>
128
+ <td class="celda-i" style="width: 980px">
129
+ <div style="position: relative; height: 35px;">
130
+ <!-- Telefónica -->
131
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
132
+ <div style="position: relative;">
133
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
134
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
135
+ Telefónica
136
+ </p>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Verbal -->
141
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px;">
142
+ <div style="position: relative;">
143
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
144
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
145
+ Verbal
146
+ </p>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Escrita -->
151
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px;">
152
+ <div style="position: relative;">
153
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
154
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
155
+ Escrita
156
+ </p>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </td>
161
+ </tr>
162
+ </table>
163
+
164
+ <table style="margin-top: 4px;">
165
+ <tr>
166
+ <td class="celda-i" style="width: 980px">
167
+ <div style="position: relative; height: 35px;">
168
+ <!-- A través de terceros -->
169
+ <div class="chequeo-i" style="position: absolute; left: 0; min-width: 300px;">
170
+ <div style="position: relative;">
171
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
172
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
173
+ A través de terceros
174
+ </p>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Simbólica -->
179
+ <div class="chequeo-i" style="position: absolute; left: 300px; min-width: 300px;">
180
+ <div style="position: relative;">
181
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
182
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
183
+ Simbólica
184
+ </p>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Redes sociales -->
189
+ <div class="chequeo-i" style="position: absolute; left: 600px; min-width: 300px;">
190
+ <div style="position: relative;">
191
+ <i class="fa-regular fa-square" style="position: absolute; left: 0; font-size: 30px; color: #ccc;"></i>
192
+ <p style="position: absolute; left: 35px; top: 5px; font-size: 15px; color: #002857; text-align: left; margin: 0px;">
193
+ Redes sociales
194
+ </p>
195
+ </div>
196
+ </div>
197
+ </div>
198
+ </td>
199
+ </tr>
200
+ </table>
201
+ </div>
202
+
203
+ <!-- Fecha y lugar del suceso -->
204
+ {% include "sistema/subtitulo_icono.html" with icono="fa-solid fa-calendar" titulo="Fecha y lugar del suceso" %}
205
+
206
+ {% include "sistema/fila_cuatro_zona.html" with label1="27. Fecha *" ancho1="20%" valor1="" label2="28. Departamento *" ancho2="20%" valor2="" label3="29. Municipio *" ancho3="20%" valor3="" label4="30. Zona *" ancho4="25%" valor4="" %}
207
+
208
+ <!-- Relato del hecho -->
209
+ {% include "sistema/texarea.html" with label="31. Relato Hechos" alto="594px" valor="" %}
@@ -0,0 +1,20 @@
1
+ <table>
2
+ <tr>
3
+ <td class="celda-i" style="width: {{ ancho1 }};">
4
+ <label>{{ label1 }}</label>
5
+ <input type="text" value="{{ valor1 }}">
6
+ </td>
7
+ <td class="celda-c" style="width: {{ ancho2 }};">
8
+ <label>{{ label2 }}</label>
9
+ <input type="text" value="{{ valor2 }}">
10
+ </td>
11
+ <td class="celda-c" style="width: {{ ancho3 }};">
12
+ <label>{{ label3 }}</label>
13
+ <input type="text" value="{{ valor3 }}">
14
+ </td>
15
+ <td class="celda-d" style="width: {{ ancho4 }};">
16
+ <label>{{ label4 }}</label>
17
+ <p>{{ valor4 }}</p>
18
+ </td>
19
+ </tr>
20
+ </table>
File without changes