[static assets] add them to git so we can forget to call "collectstatic" before we just serve

This commit is contained in:
bronsen 2025-03-18 22:57:38 +01:00
parent 003baf931d
commit 77ae66b015
141 changed files with 34703 additions and 0 deletions

View file

@ -0,0 +1,15 @@
'use strict';
{
const initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse);
switch(initData.action) {
case 'change':
opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value);
break;
case 'delete':
opener.dismissDeleteRelatedObjectPopup(window, initData.value);
break;
default:
opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj);
break;
}
}