aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/collections/list.html
diff options
context:
space:
mode:
authorzsloan2024-08-21 17:05:33 +0000
committerAlexander_Kabui2024-08-28 15:02:46 +0300
commit99bc0a91bc60616f4d446562cd32746ff8b0f22f (patch)
treee6f6360cb00c4586f6ae8022663be92826a97620 /gn2/wqflask/templates/collections/list.html
parentd213d255f4d8644eb1e77f3668801788ee3344be (diff)
downloadgenenetwork2-99bc0a91bc60616f4d446562cd32746ff8b0f22f.tar.gz
Fix timestamp attribute names
They were previously stored as 'created_timestamp' and 'changed_timestamp', but are now stored as 'created' and 'changed'
Diffstat (limited to 'gn2/wqflask/templates/collections/list.html')
-rw-r--r--gn2/wqflask/templates/collections/list.html8
1 files 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 @@
<td align="center" style="padding: 0px;"><INPUT TYPE="checkbox" NAME="collection" class="checkbox trait_checkbox" VALUE="{{ uc.id }}"></td>
<td align="right">{{ loop.index }}
<td><a class="collection_name" href="{{ url_for('view_collection', uc_id=uc.id) }}">{{ uc.name }}</a></td>
- <td>{{ uc.created_timestamp }}</td>
- <td>{{ uc.changed_timestamp }}</td>
+ <td>{{ uc.created }}</td>
+ <td>{{ uc.changed }}</td>
<td align="right">{{ uc.num_members }}</td>
</tr>
{% endfor %}
@@ -88,8 +88,8 @@
<td align="center" style="padding: 0px;"><INPUT TYPE="checkbox" NAME="collection" class="checkbox trait_checkbox" VALUE="{{ uc.id }}"></td>
<td align="right">{{ loop.index }}
<td><a class="collection_name" href="{{ url_for('view_collection', uc_id=uc.id) }}">{{ uc.name }}</a></td>
- <td>{{ uc.created_timestamp }}</td>
- <td>{{ uc.changed_timestamp }}</td>
+ <td>{{ uc.created }}</td>
+ <td>{{ uc.changed }}</td>
<td align="right">{{ uc.num_members }}</td>
</tr>
{% endfor %}