{% extends "base.html" %}
{% block title %}{{lang.words.admin_area|title()}}{% endblock %}
{% block h2 %}{{lang.words.admin_area|title()}}{% endblock %}
{% block content %}
{% from 'include/input_macros.html' import input, select, copy_to_clipboard, checkbox %}
{% include 'include/del_confirm.html' %}
{% include 'include/admin_users.html' %}
Id |
{{lang.words.name|title()}} |
{{lang.words.desc|title()}} |
|
{% for group in groups %}
{{group.group_id}} |
{% if group.name == "Default" %}
{{ group.name }} |
{{ group.description }} |
|
{% else %}
{% set id = 'name-' + group.group_id|string() %}
{{ input(id, value=group.name) }}
|
{% set id = 'descript-' + group.group_id|string() %}
{% if group.description is not none %}
{{ input(id, value=group.description, size='60') }}
{% else %}
{{ input(id, value='', size='60') }}
{% endif %}
|
|
{% endif %}
{% endfor %}
+ {{lang.words.add|title()}}
{% include 'include/admin_servers.html' %}
{% include 'include/admin_ssh.html' %}
{% include 'include/admin_settings.html' %}
{{lang.words.service|title()}}
|
{{lang.words.actions|title()}}
|
{{lang.words.version|title()}} |
{{lang.words.desc|title()}} |
|
{{lang.words.service|title()}} |
{{lang.words.current2|title()}} {{lang.words.version}} |
{{lang.words.latest|title()}} {{lang.words.version}} |
|
{{lang.words.desc|title()}} |
|
{{lang.words.note|title()}}:
{{lang.admin_page.desc.for_updating}}. {{lang.words.read|title()}}
{{lang.words.here}}
{{lang.admin_page.desc.how_to_using_repo}}
{{lang.admin_page.desc.proxy_settings}}
{{lang.words.read|title()}} {{lang.words.about}} {{lang.words.updating}}
docs
{{lang.words.and}}
changelog
{% include 'include/mon_installation.html' %}
{% include 'include/admin_backup.html' %}
{% include 'include/admins_dialogs.html' %}
{% include 'include/intro/admin.html' %}
{% include 'include/intro/js_script.html' %}
{% endblock %}