wagtail-enap-designsystem 1.2.1.123__py3-none-any.whl → 1.2.1.126__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.
Potentially problematic release.
This version of wagtail-enap-designsystem might be problematic. Click here for more details.
- enap_designsystem/blocks/__init__.py +2 -0
- enap_designsystem/blocks/html_blocks.py +63 -1
- enap_designsystem/migrations/0387_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py +51190 -0
- enap_designsystem/templates/enap_designsystem/blocks/page/pagenoticias_block.html +2 -1
- enap_designsystem/templates/enap_designsystem/blocks/recaptcha.html +338 -0
- enap_designsystem/templates/enap_designsystem/sistema_votacao_page.html +1 -5
- {wagtail_enap_designsystem-1.2.1.123.dist-info → wagtail_enap_designsystem-1.2.1.126.dist-info}/METADATA +1 -1
- {wagtail_enap_designsystem-1.2.1.123.dist-info → wagtail_enap_designsystem-1.2.1.126.dist-info}/RECORD +11 -9
- {wagtail_enap_designsystem-1.2.1.123.dist-info → wagtail_enap_designsystem-1.2.1.126.dist-info}/WHEEL +0 -0
- {wagtail_enap_designsystem-1.2.1.123.dist-info → wagtail_enap_designsystem-1.2.1.126.dist-info}/licenses/LICENSE +0 -0
- {wagtail_enap_designsystem-1.2.1.123.dist-info → wagtail_enap_designsystem-1.2.1.126.dist-info}/top_level.txt +0 -0
|
@@ -253,6 +253,7 @@
|
|
|
253
253
|
grid-template-columns: 1fr 1fr;
|
|
254
254
|
gap: 30px;
|
|
255
255
|
margin-bottom: 40px;
|
|
256
|
+
max-height: 600px;
|
|
256
257
|
}
|
|
257
258
|
|
|
258
259
|
.news-grid-main {
|
|
@@ -336,7 +337,7 @@
|
|
|
336
337
|
display: flex;
|
|
337
338
|
flex-direction: column;
|
|
338
339
|
gap: 20px;
|
|
339
|
-
max-height:
|
|
340
|
+
max-height: 600px;
|
|
340
341
|
}
|
|
341
342
|
|
|
342
343
|
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
<!-- templates/blocks/recaptcha.html -->
|
|
2
|
+
<div class="recaptcha-container {{ value.css_classes }}" data-recaptcha-id="{{ block.id }}">
|
|
3
|
+
|
|
4
|
+
{% if has_recaptcha_keys %}
|
|
5
|
+
<!-- reCAPTCHA v2 (checkbox + desafio) -->
|
|
6
|
+
<div class="g-recaptcha"
|
|
7
|
+
data-sitekey="{{ recaptcha_public_key }}"
|
|
8
|
+
data-theme="{{ value.tema }}"
|
|
9
|
+
data-size="{{ value.tamanho }}"
|
|
10
|
+
data-callback="onRecaptchaSuccess{{ block.id }}"
|
|
11
|
+
data-expired-callback="onRecaptchaExpired{{ block.id }}"
|
|
12
|
+
data-error-callback="onRecaptchaError{{ block.id }}"
|
|
13
|
+
id="recaptcha-{{ block.id }}">
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<!-- Status da verificação -->
|
|
17
|
+
<div id="status-{{ block.id }}" class="recaptcha-status mt-3" style="display: none;">
|
|
18
|
+
<div class="alert alert-success">
|
|
19
|
+
<i class="fas fa-check-circle"></i>
|
|
20
|
+
<strong>Verificação completa!</strong>
|
|
21
|
+
Você passou no teste reCAPTCHA.
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<!-- Status de erro -->
|
|
26
|
+
<div id="error-{{ block.id }}" class="recaptcha-error mt-3" style="display: none;">
|
|
27
|
+
<div class="alert alert-danger">
|
|
28
|
+
<i class="fas fa-exclamation-triangle"></i>
|
|
29
|
+
<strong>Erro no reCAPTCHA!</strong>
|
|
30
|
+
Tente novamente.
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
{% else %}
|
|
35
|
+
<div class="alert alert-warning">
|
|
36
|
+
<i class="fas fa-exclamation-triangle"></i>
|
|
37
|
+
<strong>reCAPTCHA não configurado!</strong>
|
|
38
|
+
<br><small>Configure RECAPTCHA_PUBLIC_KEY no settings.py</small>
|
|
39
|
+
</div>
|
|
40
|
+
{% endif %}
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<script>
|
|
44
|
+
// Callback quando o usuário completa o reCAPTCHA
|
|
45
|
+
window.onRecaptchaSuccess{{ block.id }} = function(response) {
|
|
46
|
+
console.log('✅ reCAPTCHA completado com sucesso!');
|
|
47
|
+
console.log('Token recebido:', response);
|
|
48
|
+
|
|
49
|
+
// Mostrar mensagem de sucesso
|
|
50
|
+
const statusDiv = document.getElementById('status-{{ block.id }}');
|
|
51
|
+
const errorDiv = document.getElementById('error-{{ block.id }}');
|
|
52
|
+
|
|
53
|
+
if (statusDiv) statusDiv.style.display = 'block';
|
|
54
|
+
if (errorDiv) errorDiv.style.display = 'none';
|
|
55
|
+
|
|
56
|
+
// Marcar como verificado
|
|
57
|
+
const container = document.querySelector('[data-recaptcha-id="{{ block.id }}"]');
|
|
58
|
+
container.setAttribute('data-verified', 'true');
|
|
59
|
+
container.setAttribute('data-response', response);
|
|
60
|
+
container.classList.add('recaptcha-verified');
|
|
61
|
+
container.classList.remove('recaptcha-error');
|
|
62
|
+
|
|
63
|
+
// Disparar evento personalizado para integração
|
|
64
|
+
document.dispatchEvent(new CustomEvent('recaptchaCompleted', {
|
|
65
|
+
detail: {
|
|
66
|
+
blockId: '{{ block.id }}',
|
|
67
|
+
response: response,
|
|
68
|
+
success: true
|
|
69
|
+
}
|
|
70
|
+
}));
|
|
71
|
+
|
|
72
|
+
// Habilitar botões de submit se existirem
|
|
73
|
+
const submitButtons = document.querySelectorAll('button[type="submit"], input[type="submit"]');
|
|
74
|
+
submitButtons.forEach(btn => {
|
|
75
|
+
btn.disabled = false;
|
|
76
|
+
btn.classList.remove('disabled');
|
|
77
|
+
});
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
// Callback quando expira
|
|
81
|
+
window.onRecaptchaExpired{{ block.id }} = function() {
|
|
82
|
+
console.log('⚠️ reCAPTCHA expirado');
|
|
83
|
+
|
|
84
|
+
const statusDiv = document.getElementById('status-{{ block.id }}');
|
|
85
|
+
const errorDiv = document.getElementById('error-{{ block.id }}');
|
|
86
|
+
|
|
87
|
+
if (statusDiv) statusDiv.style.display = 'none';
|
|
88
|
+
if (errorDiv) {
|
|
89
|
+
errorDiv.querySelector('.alert').innerHTML = `
|
|
90
|
+
<i class="fas fa-clock"></i>
|
|
91
|
+
<strong>reCAPTCHA expirado!</strong>
|
|
92
|
+
Clique novamente para verificar.
|
|
93
|
+
`;
|
|
94
|
+
errorDiv.style.display = 'block';
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const container = document.querySelector('[data-recaptcha-id="{{ block.id }}"]');
|
|
98
|
+
container.setAttribute('data-verified', 'false');
|
|
99
|
+
container.classList.remove('recaptcha-verified');
|
|
100
|
+
container.classList.add('recaptcha-error');
|
|
101
|
+
|
|
102
|
+
// Desabilitar botões de submit
|
|
103
|
+
const submitButtons = document.querySelectorAll('button[type="submit"], input[type="submit"]');
|
|
104
|
+
submitButtons.forEach(btn => {
|
|
105
|
+
btn.disabled = true;
|
|
106
|
+
btn.classList.add('disabled');
|
|
107
|
+
});
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
// Callback de erro
|
|
111
|
+
window.onRecaptchaError{{ block.id }} = function() {
|
|
112
|
+
console.log('❌ Erro no reCAPTCHA');
|
|
113
|
+
|
|
114
|
+
const statusDiv = document.getElementById('status-{{ block.id }}');
|
|
115
|
+
const errorDiv = document.getElementById('error-{{ block.id }}');
|
|
116
|
+
|
|
117
|
+
if (statusDiv) statusDiv.style.display = 'none';
|
|
118
|
+
if (errorDiv) {
|
|
119
|
+
errorDiv.querySelector('.alert').innerHTML = `
|
|
120
|
+
<i class="fas fa-exclamation-triangle"></i>
|
|
121
|
+
<strong>Erro no reCAPTCHA!</strong>
|
|
122
|
+
Verifique sua conexão e tente novamente.
|
|
123
|
+
`;
|
|
124
|
+
errorDiv.style.display = 'block';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
const container = document.querySelector('[data-recaptcha-id="{{ block.id }}"]');
|
|
128
|
+
container.setAttribute('data-verified', 'false');
|
|
129
|
+
container.classList.remove('recaptcha-verified');
|
|
130
|
+
container.classList.add('recaptcha-error');
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
// Utilitários públicos para JavaScript
|
|
134
|
+
window.recaptchaUtils{{ block.id }} = {
|
|
135
|
+
isVerified: function() {
|
|
136
|
+
const container = document.querySelector('[data-recaptcha-id="{{ block.id }}"]');
|
|
137
|
+
return container && container.getAttribute('data-verified') === 'true';
|
|
138
|
+
},
|
|
139
|
+
|
|
140
|
+
getResponse: function() {
|
|
141
|
+
const container = document.querySelector('[data-recaptcha-id="{{ block.id }}"]');
|
|
142
|
+
return container ? (container.getAttribute('data-response') || '') : '';
|
|
143
|
+
},
|
|
144
|
+
|
|
145
|
+
reset: function() {
|
|
146
|
+
if (typeof grecaptcha !== 'undefined') {
|
|
147
|
+
try {
|
|
148
|
+
grecaptcha.reset();
|
|
149
|
+
console.log('🔄 reCAPTCHA resetado');
|
|
150
|
+
} catch (e) {
|
|
151
|
+
console.log('⚠️ Erro ao resetar reCAPTCHA:', e);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const container = document.querySelector('[data-recaptcha-id="{{ block.id }}"]');
|
|
156
|
+
if (container) {
|
|
157
|
+
container.setAttribute('data-verified', 'false');
|
|
158
|
+
container.classList.remove('recaptcha-verified', 'recaptcha-error');
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
const statusDiv = document.getElementById('status-{{ block.id }}');
|
|
162
|
+
const errorDiv = document.getElementById('error-{{ block.id }}');
|
|
163
|
+
|
|
164
|
+
if (statusDiv) statusDiv.style.display = 'none';
|
|
165
|
+
if (errorDiv) errorDiv.style.display = 'none';
|
|
166
|
+
},
|
|
167
|
+
|
|
168
|
+
execute: function() {
|
|
169
|
+
if (typeof grecaptcha !== 'undefined') {
|
|
170
|
+
try {
|
|
171
|
+
grecaptcha.execute();
|
|
172
|
+
console.log('▶️ reCAPTCHA executado');
|
|
173
|
+
} catch (e) {
|
|
174
|
+
console.log('⚠️ Erro ao executar reCAPTCHA:', e);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
// Carregar script do Google reCAPTCHA (apenas uma vez)
|
|
181
|
+
if (!document.querySelector('script[src*="recaptcha/api.js"]') && {{ has_recaptcha_keys|yesno:"true,false" }}) {
|
|
182
|
+
const script = document.createElement('script');
|
|
183
|
+
script.src = 'https://www.google.com/recaptcha/api.js';
|
|
184
|
+
script.async = true;
|
|
185
|
+
script.defer = true;
|
|
186
|
+
|
|
187
|
+
script.onload = function() {
|
|
188
|
+
console.log('📡 reCAPTCHA carregado com sucesso!');
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
script.onerror = function() {
|
|
192
|
+
console.log('❌ Erro ao carregar reCAPTCHA do Google');
|
|
193
|
+
|
|
194
|
+
const errorDiv = document.getElementById('error-{{ block.id }}');
|
|
195
|
+
if (errorDiv) {
|
|
196
|
+
errorDiv.querySelector('.alert').innerHTML = `
|
|
197
|
+
<i class="fas fa-wifi"></i>
|
|
198
|
+
<strong>Erro de conexão!</strong>
|
|
199
|
+
Não foi possível carregar o reCAPTCHA.
|
|
200
|
+
`;
|
|
201
|
+
errorDiv.style.display = 'block';
|
|
202
|
+
}
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
document.head.appendChild(script);
|
|
206
|
+
console.log('📡 Carregando reCAPTCHA do Google...');
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// Event listener global para debug
|
|
210
|
+
document.addEventListener('recaptchaCompleted', function(e) {
|
|
211
|
+
console.log('🎉 Evento reCAPTCHA global:', e.detail);
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
// Debug: informações da configuração
|
|
215
|
+
console.log('🔍 reCAPTCHA Config:');
|
|
216
|
+
console.log('- Block ID:', '{{ block.id }}');
|
|
217
|
+
console.log('- Public Key:', '{{ recaptcha_public_key|truncatechars:20 }}...');
|
|
218
|
+
console.log('- Has Keys:', {{ has_recaptcha_keys|yesno:"true,false" }});
|
|
219
|
+
console.log('- Tema:', '{{ value.tema }}');
|
|
220
|
+
console.log('- Tamanho:', '{{ value.tamanho }}');
|
|
221
|
+
</script>
|
|
222
|
+
|
|
223
|
+
<style>
|
|
224
|
+
.recaptcha-container {
|
|
225
|
+
margin: 20px 0;
|
|
226
|
+
padding: 20px;
|
|
227
|
+
display: flex;
|
|
228
|
+
flex-direction: column;
|
|
229
|
+
align-items: center;
|
|
230
|
+
border: 1px solid #e9ecef;
|
|
231
|
+
border-radius: 8px;
|
|
232
|
+
background: #f8f9fa;
|
|
233
|
+
transition: all 0.3s ease;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.recaptcha-container .g-recaptcha {
|
|
237
|
+
margin: 10px 0;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/* Estado verificado */
|
|
241
|
+
.recaptcha-container.recaptcha-verified {
|
|
242
|
+
border-color: #28a745;
|
|
243
|
+
background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.recaptcha-container.recaptcha-verified::before {
|
|
247
|
+
content: '✅ Verificado com Sucesso';
|
|
248
|
+
display: block;
|
|
249
|
+
color: #155724;
|
|
250
|
+
font-weight: bold;
|
|
251
|
+
margin-bottom: 10px;
|
|
252
|
+
font-size: 14px;
|
|
253
|
+
text-align: center;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/* Estado de erro */
|
|
257
|
+
.recaptcha-container.recaptcha-error {
|
|
258
|
+
border-color: #dc3545;
|
|
259
|
+
background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.recaptcha-container.recaptcha-error::before {
|
|
263
|
+
content: '❌ Erro na Verificação';
|
|
264
|
+
display: block;
|
|
265
|
+
color: #721c24;
|
|
266
|
+
font-weight: bold;
|
|
267
|
+
margin-bottom: 10px;
|
|
268
|
+
font-size: 14px;
|
|
269
|
+
text-align: center;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/* Animações */
|
|
273
|
+
.recaptcha-status .alert,
|
|
274
|
+
.recaptcha-error .alert {
|
|
275
|
+
margin-bottom: 0;
|
|
276
|
+
animation: slideDown 0.3s ease-out;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
@keyframes slideDown {
|
|
280
|
+
from {
|
|
281
|
+
opacity: 0;
|
|
282
|
+
transform: translateY(-10px);
|
|
283
|
+
}
|
|
284
|
+
to {
|
|
285
|
+
opacity: 1;
|
|
286
|
+
transform: translateY(0);
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
/* Responsivo */
|
|
291
|
+
@media (max-width: 576px) {
|
|
292
|
+
.recaptcha-container {
|
|
293
|
+
padding: 15px;
|
|
294
|
+
margin: 15px 0;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.recaptcha-container .g-recaptcha {
|
|
298
|
+
transform: scale(0.9);
|
|
299
|
+
transform-origin: center;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/* Integração com formulários */
|
|
304
|
+
.recaptcha-container + form button[type="submit"].disabled,
|
|
305
|
+
.recaptcha-container + form input[type="submit"].disabled {
|
|
306
|
+
opacity: 0.6;
|
|
307
|
+
cursor: not-allowed;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
/* Classes CSS personalizadas */
|
|
311
|
+
.recaptcha-container.text-center {
|
|
312
|
+
text-align: center;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.recaptcha-container.my-4 {
|
|
316
|
+
margin: 1.5rem 0;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.recaptcha-container.mx-auto {
|
|
320
|
+
margin-left: auto;
|
|
321
|
+
margin-right: auto;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/* Tema escuro */
|
|
325
|
+
.recaptcha-container[data-theme="dark"] {
|
|
326
|
+
background: #343a40;
|
|
327
|
+
border-color: #495057;
|
|
328
|
+
color: #fff;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.recaptcha-container[data-theme="dark"].recaptcha-verified {
|
|
332
|
+
background: linear-gradient(135deg, #1e5c3a 0%, #28a745 100%);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.recaptcha-container[data-theme="dark"].recaptcha-error {
|
|
336
|
+
background: linear-gradient(135deg, #5c1e1e 0%, #dc3545 100%);
|
|
337
|
+
}
|
|
338
|
+
</style>
|
|
@@ -1171,14 +1171,10 @@
|
|
|
1171
1171
|
</div>
|
|
1172
1172
|
{% endif %}
|
|
1173
1173
|
|
|
1174
|
-
<div id="preview-proxima-categoria" class="sistema-proxima-categoria-preview">
|
|
1175
|
-
<!-- Conteúdo será preenchido dinamicamente -->
|
|
1176
|
-
</div>
|
|
1177
|
-
|
|
1178
1174
|
<div class="sistema-modal-actions">
|
|
1179
1175
|
<button class="sistema-btn-continuar" onclick="SistemaVotacao.continuarVotacao()">
|
|
1176
|
+
Votar na próxima categoria
|
|
1180
1177
|
<i class="fas fa-arrow-right"></i>
|
|
1181
|
-
Continuar Votando
|
|
1182
1178
|
</button>
|
|
1183
1179
|
<button class="sistema-btn-finalizar" onclick="SistemaVotacao.finalizarVotacao()">
|
|
1184
1180
|
<i class="fas fa-check-circle"></i>
|
|
@@ -7,12 +7,12 @@ enap_designsystem/signals.py,sha256=oaHpZms4Dkc97ql-55Q0QxU7-45jwg2Y1XoRDOJ45tc,
|
|
|
7
7
|
enap_designsystem/urls.py,sha256=EJ52w-55BysQU5pTZR4ltMtZM7aSKyjZdnQDGFipDXY,2219
|
|
8
8
|
enap_designsystem/views.py,sha256=6Du7WPcij-ztv5WrA9s5eukgXLGJHv0XD5y6OYZWAo4,78310
|
|
9
9
|
enap_designsystem/wagtail_hooks.py,sha256=OZhdzNolcQ4OOa6JSc6uAYvizvuiCtevFP9bRu8p80k,55920
|
|
10
|
-
enap_designsystem/blocks/__init__.py,sha256=
|
|
10
|
+
enap_designsystem/blocks/__init__.py,sha256=gc-k00LRvaxXIINBCk1OgjeTcqn3GlCEjr8oi3x3MJo,38302
|
|
11
11
|
enap_designsystem/blocks/base_blocks.py,sha256=ZuqVWn4PEAvD3pKM1ST7wjo4lwv98ooen_rs15rRJbg,10866
|
|
12
12
|
enap_designsystem/blocks/chatbot_blocks.py,sha256=YeCznrXMbFa9MP9vjdTYl53ZhKsywkGOXvFK2bwcqW0,1133
|
|
13
13
|
enap_designsystem/blocks/content_blocks.py,sha256=4oWDtY0zmvC6k7v_WduCTAyGapJuQTsfJ9ij_vJZXxY,16549
|
|
14
14
|
enap_designsystem/blocks/form.py,sha256=5lpVRA-pB7SdAKOLF8gRwhinqgtE9tSucoKiRxWJWf8,58450
|
|
15
|
-
enap_designsystem/blocks/html_blocks.py,sha256=
|
|
15
|
+
enap_designsystem/blocks/html_blocks.py,sha256=YM18TejM50E3t-zjoMXGfK9HIMj1Itf7GGymMQzOcrk,235841
|
|
16
16
|
enap_designsystem/blocks/layout_blocks.py,sha256=WyVt3nwYxA4Eqr6-MqQY7W-xtjh07ZhstM8aiQaHmLw,23388
|
|
17
17
|
enap_designsystem/blocks/semana_blocks.py,sha256=tJ8bFvW6lTSnLp2Wf1CARNSM4UoGl95lvYmxik5g0GA,70251
|
|
18
18
|
enap_designsystem/blocks/semana_inovacao.py,sha256=u2GivQWRvRbry21fPTgy1BPrmWGfrXDAaiG8bpqcDSY,46989
|
|
@@ -422,6 +422,7 @@ enap_designsystem/migrations/0383_alter_areaaluno_body_alter_enapcomponentes_bod
|
|
|
422
422
|
enap_designsystem/migrations/0384_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=UODXt074Jel7ZJNx2QaGtxFZggk5axmbPA5j0waDQh8,2315650
|
|
423
423
|
enap_designsystem/migrations/0385_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=cYVZcJXRACtKLN32YQKeZPL5bMpmm1t7EhjKF6b7hyM,2331665
|
|
424
424
|
enap_designsystem/migrations/0386_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=OkDn4fsaj9pOIucZ5ZaXO6zDJm0-MSPeyfOV5CItrHM,2324369
|
|
425
|
+
enap_designsystem/migrations/0387_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=_SrItMYmOWtlwBjc5u8_InWcmIdgmtLnoeOs0UR49EY,2298342
|
|
425
426
|
enap_designsystem/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
427
|
enap_designsystem/search_backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
427
428
|
enap_designsystem/search_backends/custom_elasticsearch.py,sha256=LeQT0_dJmNMTY7l3jOJ_7mJ9-2X0oXVqvxRiXEA0qGY,988
|
|
@@ -592,7 +593,7 @@ enap_designsystem/templates/admin/exportar_respostas.html,sha256=jF7hGJ6LkbKo536
|
|
|
592
593
|
enap_designsystem/templates/admin/meta_tags_manager.html,sha256=jXNvT9etPN88TNT8Ou8ko-AHComioM9p8iU1lpW5m3k,11826
|
|
593
594
|
enap_designsystem/templates/enap_designsystem/accordion_v2.html,sha256=SE-72OoHu-WucITL-CPR4XJzfLHrq78kmiytaSJB3Lc,4228
|
|
594
595
|
enap_designsystem/templates/enap_designsystem/base.html,sha256=bBWBjIUwzIqbTf5wIqajFNgloN38XajTFakWfb0GfCM,12712
|
|
595
|
-
enap_designsystem/templates/enap_designsystem/sistema_votacao_page.html,sha256=
|
|
596
|
+
enap_designsystem/templates/enap_designsystem/sistema_votacao_page.html,sha256=XU9ZtkzBUVzWuDrZJkR_QbjfsDKYepvq0hF3H9Hy5Fw,52940
|
|
596
597
|
enap_designsystem/templates/enap_designsystem/blocks/accordions.html,sha256=WXBQrkO4U0R8SDbdbFRWBx742gdpiYiKEviiyQURZMk,2940
|
|
597
598
|
enap_designsystem/templates/enap_designsystem/blocks/accordionsv2.html,sha256=-WXIV6zFjdbRAylWhF9mQkMxUr1Df4-d3OazVm1xT9s,5186
|
|
598
599
|
enap_designsystem/templates/enap_designsystem/blocks/alerts.html,sha256=_lbwHiFS4eauJtlQB6j-xWR31sKH7lv1EKD9oI2cki4,2067
|
|
@@ -690,6 +691,7 @@ enap_designsystem/templates/enap_designsystem/blocks/programa_card.html,sha256=n
|
|
|
690
691
|
enap_designsystem/templates/enap_designsystem/blocks/programa_cards.html,sha256=pWiTQuE6H4Zewdi72aMHq48Uz0-KDURQKbv4pEt1k7w,9543
|
|
691
692
|
enap_designsystem/templates/enap_designsystem/blocks/quote_block.html,sha256=x_hWs1npc987dSAx_lP30oJNaMRqTixy7M74_F6XMpg,347
|
|
692
693
|
enap_designsystem/templates/enap_designsystem/blocks/quote_modern.html,sha256=AQNhVuMFezBvpOKPLkgDN2Vnpl8llDTzFGf3wrraIgg,873
|
|
694
|
+
enap_designsystem/templates/enap_designsystem/blocks/recaptcha.html,sha256=FxHBZ4YgeKHpmk6tXAoR7zdj76ukhRMZsL8bLrqc0Ck,10810
|
|
693
695
|
enap_designsystem/templates/enap_designsystem/blocks/richtext_block.html,sha256=_2-KY2KOIzGFfM4wTy5-9VIKPzMDgPdthO3DR_CBVIE,2373
|
|
694
696
|
enap_designsystem/templates/enap_designsystem/blocks/section_block.html,sha256=X9xF7a0hg368FnQxzSGz7heEpiMAvmwaBB4NDFgQVKE,3598
|
|
695
697
|
enap_designsystem/templates/enap_designsystem/blocks/section_card_title_center.html,sha256=LuS4dqVRHf5t3j1sQoWN8elKztLjy1TozM9DJDiGZoA,5025
|
|
@@ -722,7 +724,7 @@ enap_designsystem/templates/enap_designsystem/blocks/footer/footer_social_grid_b
|
|
|
722
724
|
enap_designsystem/templates/enap_designsystem/blocks/navbar/navbar_block.html,sha256=ODb6r0pAV1LS_byt0Kqmf4TocAPDdBEkSVleQFxjnY4,40169
|
|
723
725
|
enap_designsystem/templates/enap_designsystem/blocks/page/lia.html,sha256=54swuKsR3U0AIbTNSNQlQ-HncYT0sGhW82wk9rITg78,27450
|
|
724
726
|
enap_designsystem/templates/enap_designsystem/blocks/page/pagelist_block.html,sha256=4zJgraGrAPBRTg3malKolNxvIrot67rpfFNn0uwlbSI,27785
|
|
725
|
-
enap_designsystem/templates/enap_designsystem/blocks/page/pagenoticias_block.html,sha256=
|
|
727
|
+
enap_designsystem/templates/enap_designsystem/blocks/page/pagenoticias_block.html,sha256=VCTj5k7s7ND9W7tpRCILWo8cBN1kQt_d4hKjCY16E6M,25664
|
|
726
728
|
enap_designsystem/templates/enap_designsystem/blocks/rps/apirps_busca_block.html,sha256=V2mkc_duQuljxG-ASzDuesgy6BuHcYifIqFpiBtYkUU,7075
|
|
727
729
|
enap_designsystem/templates/enap_designsystem/blocks/rps/apirps_ultima_block.html,sha256=kfdhbe9-nxf8my4K2qKNX195d3Sumzm3Hrc3XaSRm_4,2960
|
|
728
730
|
enap_designsystem/templates/enap_designsystem/blocks/suap/apisuap_courses_block.html,sha256=bgDEbZKv-szE7k2rN6k9kFC8XMgJd7XfKfynEznRscI,23231
|
|
@@ -824,8 +826,8 @@ enap_designsystem/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
824
826
|
enap_designsystem/utils/decorators.py,sha256=aq6SbLn0LcH2rfE3ZFit8jkD7pSx9fLVBUUwVB747hg,335
|
|
825
827
|
enap_designsystem/utils/services.py,sha256=6dG5jLSbwH49jpZV9ZNpWlaZqI49gTlwlr1vaerxdiU,5824
|
|
826
828
|
enap_designsystem/utils/sso.py,sha256=vjAuoYgoLeQAa_dkkyQ6-LmHvKMaVCxizNFpe5y3iUA,1145
|
|
827
|
-
wagtail_enap_designsystem-1.2.1.
|
|
828
|
-
wagtail_enap_designsystem-1.2.1.
|
|
829
|
-
wagtail_enap_designsystem-1.2.1.
|
|
830
|
-
wagtail_enap_designsystem-1.2.1.
|
|
831
|
-
wagtail_enap_designsystem-1.2.1.
|
|
829
|
+
wagtail_enap_designsystem-1.2.1.126.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
|
|
830
|
+
wagtail_enap_designsystem-1.2.1.126.dist-info/METADATA,sha256=HHNZ1-5MYfcJNlEdspr0CrBWGlCNIaHblD3oHZTozxQ,3651
|
|
831
|
+
wagtail_enap_designsystem-1.2.1.126.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
832
|
+
wagtail_enap_designsystem-1.2.1.126.dist-info/top_level.txt,sha256=RSFgMASxoA-hVftm5i4Qd0rArlX4Dq08lLv5G4sYD-g,18
|
|
833
|
+
wagtail_enap_designsystem-1.2.1.126.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|