Skip to content

Commit 8159ff0

Browse files
Merge pull request #69 from liam-middlebrook/datetime-fix
Don't show time for directorship meeting attends
2 parents ba9e22c + efd2ff3 commit 8159ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conditional/blueprints/dashboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def display_dashboard():
173173
cm_attendance = [
174174
{
175175
'type': m.committee,
176-
'datetime': m.timestamp
176+
'datetime': m.timestamp.date()
177177
} for m in CommitteeMeeting.query.filter(
178178
CommitteeMeeting.id.in_(c_meetings)
179179
)]

0 commit comments

Comments
 (0)