mirror of
https://github.com/nikdoof/limetime.git
synced 2025-12-13 09:42:26 +00:00
10 lines
204 B
Python
10 lines
204 B
Python
from django import forms
|
|
from timer.models import Timer, Location
|
|
|
|
|
|
class TimerForm(forms.ModelForm):
|
|
|
|
location = forms.ModelChoiceField(Location.objects.none())
|
|
|
|
class Meta:
|
|
model = Timer |