forked from beba/foerderbarometer
custom css is now only applied to travel form, not to all forms
This commit is contained in:
parent
2fe292fda0
commit
b5062dcc28
|
@ -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:
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue