fix(fastapi): fix PGP Key Fingerprint display for account/show.html

There's a space between every 4 characters in the fingerprint
in PHP; we were missing it in FastAPI. This commit fixes that
inconsistency.

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-12-03 23:40:16 -08:00
parent 522177e813
commit bfa916c7b2
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 11 additions and 2 deletions

View file

@ -46,7 +46,7 @@
</tr>
<tr>
<th>{% trans %}PGP Key Fingerprint{% endtrans %}:</th>
<td>{{ user.PGPKey or '' }}</td>
<td>{{ pgp_key }}</td>
</tr>
<tr>
<th>{% trans %}Status{% endtrans %}:</th>