Basic styling, lots of feature work

This commit is contained in:
2013-05-12 17:12:48 +01:00
parent 33cf34ba92
commit a644b280eb
24 changed files with 10681 additions and 24 deletions

10
app/timer/forms.py Normal file
View 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