diff --git a/admin/mailu/ui/templates/token/list.html b/admin/mailu/ui/templates/token/list.html index b3996da8..ad560e6a 100644 --- a/admin/mailu/ui/templates/token/list.html +++ b/admin/mailu/ui/templates/token/list.html @@ -12,25 +12,23 @@ {% trans %}New token{% endtrans %} {% endblock %} -{% block box %} - - - - - - - - - {% for token in user.tokens %} - - - - - - - {% endfor %} - -
{% trans %}Actions{% endtrans %}{% trans %}Comment{% endtrans %}{% trans %}Authorized IP{% endtrans %}{% trans %}Created{% endtrans %}
- - {{ token.comment }}{{ token.ip or "any" }}{{ token.created_at }}
+{% block content %} +{% call macros.table() %} + + {% trans %}Actions{% endtrans %} + {% trans %}Comment{% endtrans %} + {% trans %}Authorized IP{% endtrans %} + {% trans %}Created{% endtrans %} + +{% for token in user.tokens %} + + + + + {{ token.comment }} + {{ token.ip or "any" }} + {{ token.created_at }} + +{% endfor %} +{% endcall %} {% endblock %}