Revert "Add date and time pickers to forms"
continuous-integration/drone/push Build is passing Details

This reverts commit 4d91a76513.
This commit is contained in:
Lukáš Kucharczyk 2023-01-16 23:23:26 +01:00
parent 4d91a76513
commit cef797c333
2 changed files with 0 additions and 15 deletions

View File

@ -2,7 +2,6 @@
* New
* When adding session, pre-select game with the last session
* Date and time input fields now have proper pickers
## 0.2.4 / 2023-01-16 19:39+01:00

View File

@ -13,26 +13,12 @@ class SessionForm(forms.ModelForm):
"duration_manual",
"note",
]
custom_datetime_widget = forms.SplitDateTimeWidget(
date_attrs={"type": "date"}, time_attrs={"type": "time"}
)
widgets = {
"timestamp_start": custom_datetime_widget,
"timestamp_end": custom_datetime_widget,
}
class PurchaseForm(forms.ModelForm):
class Meta:
model = Purchase
fields = ["game", "platform", "date_purchased", "date_refunded"]
custom_date_widget = forms.DateInput(
format=("%d-%m-%Y"), attrs={"type": "date"}
)
widgets = {
"date_purchased": custom_date_widget,
"date_refunded": custom_date_widget,
}
class GameForm(forms.ModelForm):