From 771afba0168701ab9632cd12381887b2f8bdeae9 Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 6 Feb 2020 01:07:57 +0300 Subject: [PATCH] feat(admin-plugin): update profile #211 --- .../admin/templates/partials/base.html | 5 ++++ .../admin/templates/users/profile.html | 29 +++++++++++-------- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/site/plugins/admin/templates/partials/base.html b/site/plugins/admin/templates/partials/base.html index c708a209..642d7406 100644 --- a/site/plugins/admin/templates/partials/base.html +++ b/site/plugins/admin/templates/partials/base.html @@ -67,6 +67,11 @@ {% endfor %} +
  • + +
  • diff --git a/site/plugins/admin/templates/users/profile.html b/site/plugins/admin/templates/users/profile.html index 4774cfce..4010ec66 100644 --- a/site/plugins/admin/templates/users/profile.html +++ b/site/plugins/admin/templates/users/profile.html @@ -1,16 +1,21 @@ {% extends "plugins/admin/templates/partials/base.html" %} {% block content %} -
    -
    - {{ tr('admin_username') }}: {{ username }}
    - {{ tr('admin_role') }}: {{ rolename }}
    -
    - - +
    + {{ icon('fas fa-user-circle') }} +
    + {{ tr('admin_username') }}: + {{ username }} +
    + {{ tr('admin_role') }}: + {{ rolename }}
    +
    + +
    {{ tr('admin_logout') }} -
    -{% endblock %} +
    +
    +{% endblock %} \ No newline at end of file