mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 15:15:22 +00:00
accounts/templates/account.html fix missig tr in table
This commit is contained in:
parent
6cbad06f2c
commit
748a79d9db
1 changed files with 2 additions and 0 deletions
|
@ -26,8 +26,10 @@
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for publickey in publickeys %}
|
{% for publickey in publickeys %}
|
||||||
|
<tr>
|
||||||
<td>{{ publickey.keyname }}</td>
|
<td>{{ publickey.keyname }}</td>
|
||||||
<td title="{{ publickey.keypublic }}">{{ publickey.keypublic|truncatechars:64 }}</td>
|
<td title="{{ publickey.keypublic }}">{{ publickey.keypublic|truncatechars:64 }}</td>
|
||||||
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in a new issue