{% extends '../layout/admin.html' %} {% block html_title %}グループ管理 · {% endblock %} {% block content_head %}
{% endblock %} {% block content_main %}
{% set smessage = req.flash('successMessage') %} {% if smessage.length %}
{{ smessage }}
{% endif %} {% set emessage = req.flash('errorMessage') %} {% if emessage.length %}
{{ emessage }}
{% endif %}
{% include './widget/menu.html' with {current: 'user-group'} %}
グループ一覧

ユーザー一覧

{% for sRelation in userGroupRelations %} {% set sUser = sRelation.relatedUser%} {% endfor %} {% if 0 < notRelatedusers.length %} {% endif %}
# username 名前 作成日 最終ログイン 操作
{{ sRelation.relatedUser.username }} {{ sRelation.relatedUser.name }} {{ sRelation.relatedUser.createdAt|date('Y-m-d', sRelation.relatedUser.createdAt.getTimezoneOffset()) }} {% if sRelation.relatedUser.lastLoginAt %} {{ sRelation.relatedUser.lastLoginAt|date('Y-m-d H:i', sRelation.relatedUser.createdAt.getTimezoneOffset()) }} {% endif %}
{% endblock content_main %} {% block content_footer %} {% endblock content_footer %}