add column created and put order descendent from created field

This commit is contained in:
Cayo Puigdefabregas 2022-05-12 11:03:48 +02:00
parent cba3bca8cf
commit fee1d6787c
2 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,9 @@ class TagListView(View):
def dispatch_request(self): def dispatch_request(self):
lots = Lot.query.filter(Lot.owner_id == current_user.id) lots = Lot.query.filter(Lot.owner_id == current_user.id)
tags = Tag.query.filter(Tag.owner_id == current_user.id).order_by(Tag.id) tags = Tag.query.filter(Tag.owner_id == current_user.id).order_by(
Tag.created.desc()
)
context = { context = {
'lots': lots, 'lots': lots,
'tags': tags, 'tags': tags,

View File

@ -47,6 +47,7 @@
<th scope="col">Type</th> <th scope="col">Type</th>
<th scope="col">Provider</th> <th scope="col">Provider</th>
<th scope="col">Device</th> <th scope="col">Device</th>
<th scope="col">Created</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -62,6 +63,7 @@
</a> </a>
{% endif %} {% endif %}
</td> </td>
<td>{{ tag.created.strftime('%H:%M %d-%m-%Y') }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>