default-hour #14
1 changed files with 3 additions and 1 deletions
|
@ -17,8 +17,10 @@ def index(hours=None, minutes=None):
|
|||
""" main and only app """
|
||||
if not hours:
|
||||
hours = 17
|
||||
if not minutes:
|
||||
if hours and not minutes:
|
||||
minutes = 30
|
||||
else:
|
||||
minutes = 0
|
||||
|
||||
data = render_template('beer.html', hours=hours, minutes=minutes)
|
||||
return data
|
||||
|
|
Loading…
Reference in a new issue