8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 16:48:55 +00:00

Link models in the UI

This commit is contained in:
lhark 2016-11-19 02:54:39 +01:00
parent 079defc7f9
commit 021943405a
2 changed files with 16 additions and 4 deletions

View file

@ -17,7 +17,7 @@
</thead>
{% for facture in facture_list %}
<tr>
<td>{{ facture.user }}</td>
<td><a href="{% url 'users:profil' userid=facture.user.id %}">{{ facture.user }}</a></td>
<td>{{ facture.name }}</td>
<td>{{ facture.prix_total }}</td>
<td>{{ facture.paiement }}</td>

View file

@ -12,9 +12,21 @@
{% for port in port_list %}
<tr>
<td>{{ port.port }}</td>
<td>{{ port.room }}</td>
<td>{{ port.machine_interface }}</td>
<td>{{ port.related }}</td>
<td>
{% if port.room %}
{{ port.room }}
{% endif %}
</td>
<td>
{% if port.machine_interface %}
<a href="{% url 'users:profil' userid=port.machine_interface.machine.user.id %}">{{ port.machine_interface }}</a>
{% endif %}
</td>
<td>
{% if port.related %}
<a href="{% url 'topologie:index-port' switch_id=port.related.switch.id %}">{{ port.related }}</a>
{% endif %}
</td>
<td>{{ port.details }}</td>
<td class="text-right">
<a class="btn btn-info btn-sm" role="button" title="Historique" href="{% url 'topologie:history' 'port' port.pk %}">