{%- extends "_layout.html" %} {%- block css %} {{ super() }} {%- endblock css %} {%- block content %}

{{ hawat_view_title }}


{%- for item in items %} {%- endfor %}
{{ gettext('Login') }} {{ gettext('Name') }} {{ gettext('Organization') }} {{ gettext('Roles') }} {{ get_fa_icon('actions') }} {{ gettext('Actions') }}
{{ item.login }} {{ item.fullname }} {{ item.organization | truncate(50) }} {%- for role_name in config['ROLES'] %} {%- if item.has_role(role_name) %} {{ get_fa_icon('check') }} {{ role_name }} {%- else %} {{ get_fa_icon('check_blank') }} {{ role_name }} {%- endif %} {%- endfor %}
{%- endblock content %} {%- block js %} {{ super() }} {%- endblock js %}