1
0
Fork 0

custom css is now only applied to travel form, not to all forms

This commit is contained in:
Benni Bärmann 2022-12-07 14:08:23 +00:00
parent 2fe292fda0
commit b5062dcc28
2 changed files with 7 additions and 1 deletions

View File

@ -74,6 +74,12 @@ class TravelForm(FdbForm):
'checkout': AdminDateWidget(),}
fields = ['project_name', 'transport', 'travelcost', 'checkin', 'checkout', 'hotel', 'notes']
class Media:
css = {
'all': ('admin/css/dateFieldNoNowShortcutInTravels.css',)
}
class LibraryForm(FdbForm):
class Meta:

View File

@ -9,7 +9,7 @@
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/base.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/widgets.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/dateFieldNoNowShortcutInTravels.css' %}" />
{% load i18n %}
{% block content %}