Browse Source

Fix erreur de default dans l'affichage des noms de machines.

add_link_port_search_results
Hugo LEVY-FALK 7 years ago
committed by edpibu
parent
commit
0f45057f4c
  1. 2
      machines/templates/machines/aff_machines.html

2
machines/templates/machines/aff_machines.html

@ -52,7 +52,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<td colspan="4">
{% trans "No name" as tr_no_name %}
{% trans "View the profile" as tr_view_the_profile %}
<b>{{ machine.name|default:'<i>tr_no_name</i>' }}</b> <i class="fa-angle-right"></i>
<b>{{ machine.name|default:tr_no_name }}</b> <i class="fa-angle-right"></i>
<a href="{% url 'users:profil' userid=machine.user.id %}" title=tr_view_the_profile>
<i class="fa fa-user"></i> {{ machine.user }}
</a>

Loading…
Cancel
Save