clean: remove pycache from tracking

This commit is contained in:
2026-04-30 13:28:53 +02:00
committed by Soriba SYLLA
parent d12b014b20
commit 7ee14e7b3f
525 changed files with 0 additions and 45689 deletions

View File

@@ -1,15 +0,0 @@
'use strict';
{
const $ = django.jQuery;
const fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields');
$.each(fields, function(index, field) {
$(
'.empty-form .form-row .field-' + field.name +
', .empty-form.form-row .field-' + field.name +
', .empty-form .form-row.field-' + field.name
).addClass('prepopulated_field');
$(field.id).data('dependency_list', field.dependency_list).prepopulate(
field.dependency_ids, field.maxLength, field.allowUnicode
);
});
}