mirror of
https://github.com/nikdoof/limetime.git
synced 2025-12-17 20:59:25 +00:00
Basic styling, lots of feature work
This commit is contained in:
10
app/timer/forms.py
Normal file
10
app/timer/forms.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django import forms
|
||||
from timer.models import Timer, Location
|
||||
|
||||
|
||||
class TimerForm(forms.ModelForm):
|
||||
|
||||
location = forms.ModelChoiceField(Location.objects.none())
|
||||
|
||||
class Meta:
|
||||
model = Timer
|
||||
Reference in New Issue
Block a user