Merge pull request #444 from eReuse/feature/4319-add-columns-list-documents-device
Feature/4319 add columns list documents device
This commit is contained in:
commit
9e7a1ec5bd
|
@ -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,14 @@
|
|||
{{ doc.file_name}}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{{ doc.type }}
|
||||
</td>
|
||||
<td>
|
||||
{% if doc.description %}
|
||||
{{ doc.description|truncate(30, True) }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{{ doc.created.strftime('%Y-%m-%d %H:%M') }}
|
||||
</td>
|
||||
|
|
Reference in New Issue