Browse Source

N'affiche pas la clef radius en clair dans le menu preferences

reminder-serializer
Gabriel Detraz 8 years ago
committed by grizzly
parent
commit
6c41f90398
  1. 4
      preferences/templates/preferences/aff_radiuskey.html

4
preferences/templates/preferences/aff_radiuskey.html

@ -25,7 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
<th>Clef</th> <th>Id Clef</th>
<th>Commentaire</th> <th>Commentaire</th>
<th>Clef par default des switchs</th> <th>Clef par default des switchs</th>
<th>Clef utilisée par les switchs</th> <th>Clef utilisée par les switchs</th>
@ -35,7 +35,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</thead> </thead>
{% for radiuskey in radiuskey_list %} {% for radiuskey in radiuskey_list %}
<tr> <tr>
<td>{{ radiuskey.radius_key }}</td> <td>{{ radiuskey.id }}</td>
<td>{{ radiuskey.comment }}</td> <td>{{ radiuskey.comment }}</td>
<td>{{ radiuskey.default_switch }}</td> <td>{{ radiuskey.default_switch }}</td>
<td>{{ radiuskey.switch_set.all|join:", " }}</td> <td>{{ radiuskey.switch_set.all|join:", " }}</td>

Loading…
Cancel
Save