prettify mailbox detail page

This commit is contained in:
Son NK 2020-03-09 13:35:27 +01:00
parent 3ef7285288
commit 3be593ed09
2 changed files with 2 additions and 1 deletions

View file

@ -81,7 +81,7 @@
<div class="form-group">
<label class="form-label">PGP Public Key</label>
<textarea name="pgp" class="form-control" rows=10>{{mailbox.pgp_public_key or ""}}</textarea>
<textarea name="pgp" class="form-control" rows=10 placeholder="-----BEGIN PGP PUBLIC KEY BLOCK-----">{{mailbox.pgp_public_key or ""}}</textarea>
</div>
<button class="btn btn-primary" name="action" value="save">Save</button>

View file

@ -131,6 +131,7 @@ def fake_data():
activated=True,
is_admin=True,
otp_secret="base32secret3232",
can_use_pgp=True
)
db.session.commit()