{% extends 'admin/admin_base.html.twig' %} {% import "admin/Macros/Buttons/_button.html.twig" as button %} {% set page_title = "Kullanıcılar" %} {% block title %}{{ page_title }}{% endblock %} {% block stylesheets %} {% endblock %} {% block breadcrumb %} {% set fields = [ { 'name': page_title }] %} {% include 'admin/Common/_breadcrumb.html.twig' %} {% endblock %} {% block page_buttons %} {{ button.button_new({ 'text':'Kullanıcı Ekle', 'href':'javascript:', 'class':'', 'attr':'data-ajax-modal data-href='~path('admin_user_new')~'' }) }} {% endblock %} {% block body %}
{% for k,user in users %} {% set profile = user.profile %} {% endfor %}
Ad Soyad E-mail Son Giriş Yetkilendirme Durum İşlem
{{ profile.fullName|default("-") }} {{ user.email }} {{ user.lastLogin ? user.lastLogin|date('d.m-Y H:i') : '-' }} {% if user.enabled %} Aktif {% else %} Pasif {% endif %} {% if user.fullAuthorization %} Tam Yetki {% else %} Kısıtlandırılmış Yetki {% endif %}
{% endblock %} {% block head_javascripts %} {% include 'admin/Common/_datatable_all_js.html.twig' %} {% endblock %}