add new columns

This commit is contained in:
Cayo Puigdefabregas 2023-04-18 10:10:43 +02:00
parent 2e0173b7dc
commit b6b8c6a1f9
1 changed files with 9 additions and 1 deletions

View File

@ -214,6 +214,8 @@
<thead>
<tr>
<th scope="col">File</th>
<th scope="col">Type</th>
<th scope="col">Description</th>
<th scope="col" data-type="date" data-format="YYYY-MM-DD hh:mm">Uploaded on</th>
<th></th>
<th></th>
@ -229,6 +231,12 @@
{{ doc.file_name}}
{% endif %}
</td>
<td>
{{ doc.type }}
</td>
<td>
{{ doc.description|truncate(30, True) }}
</td>
<td>
{{ doc.created.strftime('%Y-%m-%d %H:%M') }}
</td>