2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 13:28:49 +00:00

usage of new templates

This commit is contained in:
Matthias 2021-05-12 15:41:48 +02:00
parent 3d574f6a18
commit 0ff7ee21d0

View File

@ -82,14 +82,14 @@
<tr> <tr>
<td><span class='fas fa-phone'></span></td> <td><span class='fas fa-phone'></span></td>
<td>{% trans "Phone" %}</td> <td>{% trans "Phone" %}</td>
<td>{{ company.phone }}{% include "clip.html"%}</td> <td>{% include "tel.html" with tel=company.phone %}</td>
</tr> </tr>
{% endif %} {% endif %}
{% if company.email %} {% if company.email %}
<tr> <tr>
<td><span class='fas fa-at'></span></td> <td><span class='fas fa-at'></span></td>
<td>{% trans "Email" %}</td> <td>{% trans "Email" %}</td>
<td>{{ company.email }}{% include "clip.html"%}</td> <td>{% include "mail.html" with mail=company.email %}</td>
</tr> </tr>
{% endif %} {% endif %}
{% if company.contact %} {% if company.contact %}