2020-10-24 02:58:05 +00:00
|
|
|
'use strict';
|
|
|
|
{
|
|
|
|
const $ = django.jQuery;
|
|
|
|
const fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields');
|
2018-10-12 03:11:57 +00:00
|
|
|
$.each(fields, function(index, field) {
|
2022-10-13 02:04:59 +00:00
|
|
|
$(
|
|
|
|
'.empty-form .form-row .field-' + field.name +
|
|
|
|
', .empty-form.form-row .field-' + field.name +
|
|
|
|
', .empty-form .form-row.field-' + field.name
|
|
|
|
).addClass('prepopulated_field');
|
2018-10-12 03:11:57 +00:00
|
|
|
$(field.id).data('dependency_list', field.dependency_list).prepopulate(
|
|
|
|
field.dependency_ids, field.maxLength, field.allowUnicode
|
|
|
|
);
|
|
|
|
});
|
2020-10-24 02:58:05 +00:00
|
|
|
}
|