Invoices: show only custom documents in upload form (#1786)

This commit is contained in:
Kevin Papst
2020-06-19 18:31:08 +02:00
committed by GitHub
parent 470a6b30e0
commit 381f46cdd8
16 changed files with 222 additions and 42 deletions

View File

@@ -36,9 +36,9 @@
<tbody>
{% for document in documents %}
<tr>
<td>{{ document.id }}</td>
<td>{{ document.lastChange|date }}</td>
<td>{{ document.filename|replace({(baseDirectory): ''}) }}</td>
<td style="width: 33%">{{ document.id }}</td>
<td style="width: 33%">{{ document.lastChange|date }}</td>
<td>{{ document.name }}</td>
</tr>
{% endfor %}
</tbody>