Add trans and migration

This commit is contained in:
cuom1999 2024-09-03 09:51:38 -05:00
parent c833dc06d9
commit a230441862
5 changed files with 220 additions and 153 deletions

View file

@ -16,11 +16,18 @@
{{ form.media.js }}
<script>
$(function() {
$('select').each(function() {
var selectedValues = $(this).val();
$(this).select2();
$(this).val(selectedValues);
});
setTimeout(function() {
if ('DjangoPagedown' in window) {
DjangoPagedown.init();
}
}, 3000);
}, 2000);
});
</script>
{% endblock %}