8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-16 07:36:21 +00:00

mise en page pour les longues fingerpint ssh

This commit is contained in:
Grizzly 2018-06-24 18:26:26 +00:00 committed by Maël Kervella
parent e9f4767709
commit 7ccc93cf4c
2 changed files with 20 additions and 4 deletions

View file

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

View file

@ -113,4 +113,19 @@ footer a {
.modal-dialog {
width: 1000px
}
/* For tables with long text in cells */
.table.long_text{
table-layout: fixed;
width: 100%;
}
td.long_text{
word-wrap: break-word;
width: 40%;
}
th.long_text{
width: 60%;
}