Files
limetime/app/timer/forms.py

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