Commit bf9be05b authored by Kristian Tan's avatar Kristian Tan

Displaying daily total on html

parent 9c6fb9aa
......@@ -41,7 +41,8 @@ latest_entry = db.session.query(DailyUsage).order_by(DailyUsage.id.desc()).first
if latest_entry:
latest_entry_date = date(latest_entry.date.year, latest_entry.date.month, latest_entry.date.day)
if latest_entry_date == datetime.today().date():
daily_total = round(latest_entry.on_time_seconds / 60, 3)
daily_total += latest_entry.on_time_seconds
# Create dictionary to store pin info
pins = {
......@@ -112,7 +113,7 @@ def toggle_pin(change_pin):
if latest_entry:
latest_entry_date = date(latest_entry.date.year, latest_entry.date.month, latest_entry.date.day)
if latest_entry_date == datetime.today().date():
daily_total = round(latest_entry.on_time_seconds / 60, 3)
daily_total = latest_entry.on_time_seconds
else:
daily_total = 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment