| {{ u.id }} |
{{ u.username }}
{% if u.is_admin %}管理者{% endif %}
|
{{ u.display_name }} |
{% if is_admin || u.id == current_user_id %}
{% else %}
{% if u.is_active %}有効{% else %}無効{% endif %}
{% endif %}
|
{{ u.created_at }} |
{% if u.id == current_user_id %}
編集
{% else if is_admin %}
編集
{% endif %}
{% if is_admin && u.id != current_user_id %}
{% endif %}
{% if is_admin || u.id == current_user_id %}
{% endif %}
|