|
|
@ -21,11 +21,11 @@ with this program; if not, write to the Free Software Foundation, Inc., |
|
|
{% endcomment %} |
|
|
{% endcomment %} |
|
|
|
|
|
|
|
|
{% load acl %} |
|
|
{% load acl %} |
|
|
|
|
|
<div class="table-responsive"> |
|
|
<table class="table table-striped"> |
|
|
<table class="table table-striped long_text"> |
|
|
<thead> |
|
|
<thead> |
|
|
<tr> |
|
|
<tr> |
|
|
<th>Entrée du hash</th> |
|
|
<th class="long_text">Entrée du hash</th> |
|
|
<th>Algorithme utilisé</th> |
|
|
<th>Algorithme utilisé</th> |
|
|
<th>Commentaire</th> |
|
|
<th>Commentaire</th> |
|
|
<th></th> |
|
|
<th></th> |
|
|
@ -33,7 +33,7 @@ with this program; if not, write to the Free Software Foundation, Inc., |
|
|
</thead> |
|
|
</thead> |
|
|
{% for sshfpr in sshfingerprint_list %} |
|
|
{% for sshfpr in sshfingerprint_list %} |
|
|
<tr> |
|
|
<tr> |
|
|
<td>{{ sshfpr.hash_entry }}</td> |
|
|
<td class="long_text">{{ sshfpr.pub_key_entry }}</td> |
|
|
<td>{{ sshfpr.algo }}</td> |
|
|
<td>{{ sshfpr.algo }}</td> |
|
|
<td>{{ sshfpr.comment }}</td> |
|
|
<td>{{ sshfpr.comment }}</td> |
|
|
<td class="text-right"> |
|
|
<td class="text-right"> |
|
|
@ -48,4 +48,5 @@ with this program; if not, write to the Free Software Foundation, Inc., |
|
|
</tr> |
|
|
</tr> |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
</table> |
|
|
</table> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|