fix mistakes in templates

This commit is contained in:
kitoy 2025-12-16 08:18:04 +01:00
parent 899759a2fb
commit c4e1318722
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@
{% for alias in aliases %}
<tr>
<td>{{ alias }}</td>
<td><a href="{{ url_for('profil.remove_alias', aliasrm=alias) }}"><button type="button" class="btn btn-sm btn-danger">Supprimer</button></a></td>
<td><a href="{{ url_for('mymailbox.remove_alias', aliasrm=alias) }}"><button type="button" class="btn btn-sm btn-danger">Supprimer</button></a></td>
</tr>
{% endfor %}
{% endif %}

View File

@ -3,7 +3,7 @@
{% block main %}
{% if mail_server or xmpp_servrer %}
{% if not(mail_server) or not(xmpp_server) %}
<h3 class="panel-title"> Ma Messagerie </h3>
@ -16,7 +16,7 @@
<h3> Bienvenue {{ username }} dans votre messagerie</h3>
<h4> Votre compte est : {{ myemail }} </h4>OD
<h4> Votre compte est : {{ myemail }} </h4>
<p>
Si vous êtes sur cette page, c'est que vous diposez d'un compte de messaegerie sur le serveur.

View File

@ -98,7 +98,7 @@ def db_migrate(database):
totp_col = True
if "blog_theme" == col[0]:
blog_theme_col = True
cursor.execute("""SELECT name FROM PRAGMA_TABLE_INFO('Blog_posts');""")
db_columns = cursor.fetchall()