mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
liens des profils dans la liste des tickets
This commit is contained in:
parent
84ab2b0cbd
commit
f112cf3305
1 changed files with 5 additions and 1 deletions
|
@ -64,7 +64,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<i class="fa fa-ticket"></i>
|
<i class="fa fa-ticket"></i>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ ticket.user }}</td>
|
{% if ticket.user %}
|
||||||
|
<td><a href="{% url 'users:profil' ticket.user.id%}" role="button">{{ ticket.user.id }}</a></td>
|
||||||
|
{% else %}
|
||||||
|
<td> Anonyme </td>
|
||||||
|
{% endif %}
|
||||||
<td>{{ ticket.title }}</td>
|
<td>{{ ticket.title }}</td>
|
||||||
<td>{{ ticket.date }}</td>
|
<td>{{ ticket.date }}</td>
|
||||||
{% if ticket.solved %}
|
{% if ticket.solved %}
|
||||||
|
|
Loading…
Reference in a new issue