From 93a0922d92cbde2f705283597f02c25aceb1ec32 Mon Sep 17 00:00:00 2001 From: zsloan Date: Wed, 21 Aug 2024 17:05:33 +0000 Subject: Fix timestamp attribute names They were previously stored as 'created_timestamp' and 'changed_timestamp', but are now stored as 'created' and 'changed' --- gn2/wqflask/templates/collections/list.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gn2/wqflask/templates/collections/list.html b/gn2/wqflask/templates/collections/list.html index c3d5d2a4..dc725fb6 100644 --- a/gn2/wqflask/templates/collections/list.html +++ b/gn2/wqflask/templates/collections/list.html @@ -57,8 +57,8 @@ {{ loop.index }} {{ uc.name }} - {{ uc.created_timestamp }} - {{ uc.changed_timestamp }} + {{ uc.created }} + {{ uc.changed }} {{ uc.num_members }} {% endfor %} @@ -88,8 +88,8 @@ {{ loop.index }} {{ uc.name }} - {{ uc.created_timestamp }} - {{ uc.changed_timestamp }} + {{ uc.created }} + {{ uc.changed }} {{ uc.num_members }} {% endfor %} -- cgit v1.2.3