misuzu/templates/manage/users/role.twig

99 lines
4.1 KiB
Twig
Raw Normal View History

2018-08-15 01:12:58 +00:00
{% extends 'manage/users/master.twig' %}
2018-10-22 19:53:21 +00:00
{% from 'macros.twig' import container_title %}
2018-08-15 01:12:58 +00:00
{% from 'manage/macros.twig' import permissions_table %}
2018-10-27 14:29:13 +00:00
{% from '_layout/input.twig' import input_csrf, input_text, input_checkbox %}
2018-03-31 22:28:32 +00:00
{% block manage_content %}
2018-10-22 19:53:21 +00:00
<form action="?v=role{{ edit_role is defined ? '&r=' ~ edit_role.role_id : '' }}" method="post"{% if edit_role is defined %} style="{{ edit_role.role_colour|html_colour('--accent-colour') }}"{% endif %}>
{{ input_csrf('users_role') }}
2018-10-02 19:16:42 +00:00
2018-03-31 22:28:32 +00:00
<div class="container">
2018-10-22 19:53:21 +00:00
{{ container_title(edit_role is defined ? 'Editing ' ~ edit_role.role_name ~ ' (' ~ edit_role.role_id ~ ')' : 'Creating a new role') }}
2018-03-31 22:28:32 +00:00
<label class="form__label">
<div class="form__label__text">Role Name</div>
<div class="form__label__input">
{{ input_text('role[name]', '', edit_role.role_name|default(''), 'text', '', true, {'maxlength':255}) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
<label class="form__label">
<div class="form__label__text">Hide Rank</div>
<div class="form__label__input">
2018-11-17 20:37:18 +00:00
{{ input_checkbox('role[secret]', '', edit_role is defined and edit_role.role_hidden) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
<label class="form__label">
<div class="form__label__text">Hierarchy</div>
<div class="form__label__input">
2018-10-27 19:06:16 +00:00
{{ input_text('role[hierarchy]', '', edit_role.role_hierarchy|default(1), 'number', '', true) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
2018-07-08 19:24:59 +00:00
<label class="form__label">
<div class="form__label__text">Title</div>
<div class="form__label__input">
{{ input_text('role[title]', '', edit_role.role_title|default(''), 'text', '', false, {'maxlength':64}) }}
2018-07-08 19:24:59 +00:00
</div>
</label>
</div>
<div class="container">
2018-10-22 19:53:21 +00:00
{{ container_title('Colour') }}
2018-03-31 22:28:32 +00:00
{% set colour_props = edit_role.role_colour|default(constant('MSZ_COLOUR_INHERIT'))|colour_props %}
2018-03-31 22:28:32 +00:00
<label class="form__label">
<div class="form__label__text">Inherit Colour</div>
<div class="form__label__input">
{{ input_checkbox('role[colour][inherit]', '', colour_props.inherit) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
<label class="form__label">
<div class="form__label__text">Red</div>
<div class="form__label__input">
{{ input_text('role[colour][red]', '', colour_props.red, 'number', '', false, {'min':0,'max':255}) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
<label class="form__label">
<div class="form__label__text">Green</div>
<div class="form__label__input">
{{ input_text('role[colour][green]', '', colour_props.green, 'number', '', false, {'min':0,'max':255}) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
<label class="form__label">
<div class="form__label__text">Blue</div>
<div class="form__label__input">
{{ input_text('role[colour][blue]', '', colour_props.blue, 'number', '', false, {'min':0,'max':255}) }}
2018-03-31 22:28:32 +00:00
</div>
</label>
</div>
<div class="container">
2018-10-22 19:53:21 +00:00
{{ container_title('Additional') }}
2018-03-31 22:28:32 +00:00
<label class="form__label">
<div class="form__label__text">Description</div>
<div class="form__label__input">
<textarea class="input__textarea" name="role[description]" maxlength="1000">{{ edit_role is defined ? edit_role.role_description : '' }}</textarea>
2018-03-31 22:28:32 +00:00
</div>
</label>
2018-07-08 19:24:59 +00:00
</div>
2018-03-31 22:28:32 +00:00
2018-07-08 19:24:59 +00:00
{% if can_manage_perms %}
<div class="container">
2018-10-22 19:53:21 +00:00
{{ container_title('Permissions') }}
2018-12-11 19:08:59 +00:00
{{ permissions_table(permissions, true) }}
2018-03-31 22:28:32 +00:00
</div>
2018-07-08 19:24:59 +00:00
{% endif %}
2018-10-02 19:16:42 +00:00
<button class="input__button">{{ edit_role is defined ? 'Update role' : 'Create role' }}</button>
2018-03-31 22:28:32 +00:00
</form>
{% endblock %}