Don't freak out if there are no sessions
This commit is contained in:
parent
a694406e99
commit
0224afcad9
|
@ -21,9 +21,15 @@ def model_counts(request):
|
||||||
|
|
||||||
def add_session(request):
|
def add_session(request):
|
||||||
context = {}
|
context = {}
|
||||||
|
initial = {}
|
||||||
|
|
||||||
now = now_with_tz()
|
now = now_with_tz()
|
||||||
|
initial["timestamp_start"] = now
|
||||||
|
|
||||||
last = Session.objects.all().last()
|
last = Session.objects.all().last()
|
||||||
initial = {"timestamp_start": now, "purchase": last.purchase}
|
if last != None:
|
||||||
|
initial["purchase"] = last.purchase
|
||||||
|
|
||||||
form = SessionForm(request.POST or None, initial=initial)
|
form = SessionForm(request.POST or None, initial=initial)
|
||||||
if form.is_valid():
|
if form.is_valid():
|
||||||
form.save()
|
form.save()
|
||||||
|
|
Loading…
Reference in New Issue