tinternet.net/core/Resources/views/admin/module/account.html.twig

16 lines
567 B
Twig
Raw Normal View History

2021-03-23 23:21:01 +01:00
<div class="btn-group">
<button type="button" class="btn btn-light dropdown-toggle dropdown-toggle-hide-after" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ app.user }}
<span class="ml-1 fa fa-cog"></span>
</button>
<div class="dropdown-menu dropdown-menu-right">
<a href="{{ path('admin_account') }}" class="dropdown-item">
2021-03-24 17:09:13 +01:00
{{ 'My account'|trans }}
2021-03-23 23:21:01 +01:00
</a>
2021-03-16 10:37:12 +01:00
2021-03-23 23:21:01 +01:00
<a href="{{ path('auth_logout') }}" class="dropdown-item">
2021-03-24 17:09:13 +01:00
{{ 'Logout'|trans }}
2021-03-23 23:21:01 +01:00
</a>
2021-03-16 10:37:12 +01:00
</div>
</div>