contacts: include form number in list of user forms (#9731)

This commit is contained in:
Frédéric Péters 2016-01-22 11:56:38 +01:00
parent 017758ce63
commit 82507bac92
1 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,10 @@
{% if forms %}
<ul class="formdatas">
{% for form in forms %}
<li><a href="{{form.form_url_backoffice}}">{{form.name}} <span>({{form.status}}), {{form.form_receipt_date}}</span></a></li>
<li><a href="{{form.form_url_backoffice}}">{{form.name}} ({{form.form_number}})<span>,
{{form.form_receipt_date}}
({{form.status}})
</span></a></li>
{% endfor %}
</ul>
{% endif %}