2018-06-28 05:55:07 +00:00
{% extends "base.html" %}
{% block content %}
< script src = "/inc/users.js" > < / script >
< div id = "dialog-confirm" title = "Are you sure you want to delete?" style = "display: none;" >
< p > < span class = "ui-icon ui-icon-alert" style = "float:left; margin:3px 12px 20px 0;" > < / span > Deleting irreversibly all data will be lost?< / p >
< / div >
2018-10-03 10:14:57 +00:00
< input type = "hidden" id = "new-group" name = "new-group" value = "{{ group }}" >
< input type = "hidden" id = "new-server-group-add" name = "new-server-group-add" value = "{{ group }}" >
< input type = "hidden" id = "new-ssh-group-add" name = "new-ssh-group-add" value = "{{ ssh_group }}" >
2018-06-28 05:55:07 +00:00
< div id = "tabs" >
< ul >
2018-09-28 16:10:01 +00:00
< li > < a href = "#users" > Users< / a > < / li >
2018-06-28 05:55:07 +00:00
< li > < a href = "#servers" > Servers< / a > < / li >
< li > < a href = "#ssh" > SSH credentials< / a > < / li >
2018-07-25 05:25:27 +00:00
< li > < a href = "#checker" > Checker< / a > < / li >
2018-07-07 09:43:31 +00:00
{% if user %}
< a href = /app/login.py?logout=logout title = "Logout, user name: {{ user }}" class = "login" > Logout< / a >
{% else %}
< a href = /app/login.py title = "Login" class = "login" > Login< / a >
{% endif %}
2018-06-28 05:55:07 +00:00
< / ul >
2018-09-28 16:10:01 +00:00
< div id = "users" >
< table class = "overview" id = "ajax-users" >
< tr class = "overviewHead" >
< td class = "padding10 first-collumn" > Login name< / td >
< td > Password< / td >
< td > Email< / td >
< td > Role< / td >
< td > < / td >
< / tr >
< tr >
{% for user in users %}
{% if user.5 == group %}
< tr id = "user-{{user.0}}" class = "{{ loop.cycle('odd', 'even') }}" >
< td class = "padding10 first-collumn" >
2018-11-26 10:00:25 +00:00
{% if user.6 == 1%}
< input type = "text" id = "login-{{user.0}}" value = "{{user.1}}" class = "form-control" readonly >
{% else %}
< input type = "text" id = "login-{{user.0}}" value = "{{user.1}}" class = "form-control" >
{% endif %}
2018-10-03 10:14:57 +00:00
< input type = "hidden" id = "usergroup-{{user.0}}" name = "usergroup-{{user.0}}" value = "{{ group }}" >
2018-09-28 16:10:01 +00:00
< / td >
2018-11-09 08:42:36 +00:00
< td >
{% if user.6 == 1%}
< input type = "password" id = "password-{{user.0}}" value = "{{user.3}}" class = "form-control" readonly >
{% else %}
< input type = "password" id = "password-{{user.0}}" value = "{{user.3}}" class = "form-control" >
{% endif %}
< / td >
2018-11-26 10:00:25 +00:00
< td >
{% if user.6 == 1%}
< input type = "text" id = "email-{{user.0}}" value = "{{user.2}}" class = "form-control" readonly >
{% else %}
< input type = "text" id = "email-{{user.0}}" value = "{{user.2}}" class = "form-control" >
{% endif %}
< / td >
2018-09-28 16:10:01 +00:00
< td >
< select id = "role-{{user.0}}" name = "role-{{user.0}}" >
< option disabled selected > Choose role< / option >
{% for role in roles %}
{% if role.1 != "admin" %}
{% if user.4 == role.1 %}
< option value = "{{ role.1 }}" selected > {{ role.1 }}< / option >
{% else %}
< option value = "{{ role.1 }}" > {{ role.1 }}< / option >
{% endif %}
{% endif %}
{% endfor %}
< / select >
< / td >
< td >
< a class = "delete" onclick = "confirmDeleteUser({{user.0}})" title = "Delete user {{user.1}}" style = "cursor: pointer;" > < / a >
< / td >
< / tr >
{% endif %}
{% endfor %}
< / table >
2018-10-04 04:07:32 +00:00
< br / > < span class = "add-button" title = "Add user" id = "add-user-button" > + Add< / span >
< br / > < br / >
2018-09-28 16:10:01 +00:00
< / div >
2018-06-28 05:55:07 +00:00
< div id = "servers" >
< table class = "overview" id = "ajax-servers" >
< tr class = "overviewHead" >
< td class = "padding10 first-collumn" > Hostname< / td >
2018-10-03 10:14:57 +00:00
< td class = "ip-field" > IP< / td >
< td class = "checkbox-head" > < span title = "SSH port" > Port(?)< / span > < / td > < / td >
< td class = "checkbox-head" > Enable< / td >
< td class = "checkbox-head" > < span title = "Vitrual IP, something like VRRP" > Virt(?)< / span > < / td >
< td class = "checkbox-head" > < span title = "Alert if backend change status. Before enable add Telgram chanel at Checker tab" > Alert(?)< / span > < / td >
< td class = "checkbox-head" > < span title = "Enable save and show metrics" > Metrics(?)< / span > < / td >
2018-11-26 10:00:25 +00:00
< td class = "checkbox-head" > < span title = "Keep active HAProxy service if down" > Active(?)< / span > < / td >
2018-10-03 10:14:57 +00:00
< td class = "slave-field" > < span title = "Actions with master config will automatically apply on slave" > Slave for (?)< / span > < / td >
< td class = "cred-field" > Credentials< / td >
2018-09-28 10:35:44 +00:00
< td > Desciption< / td >
2018-06-28 05:55:07 +00:00
< td > < / td >
< / tr >
{% set ssh_group = [] %}
{% for server in servers %}
{% do ssh_group.append(server.3) %}
2018-08-05 14:37:14 +00:00
< tr id = "server-{{server.0}}" class = "{{ loop.cycle('odd', 'even') }}" >
2018-06-28 05:55:07 +00:00
< td class = "padding10 first-collumn" >
< input type = "text" id = "hostname-{{server.0}}" value = "{{server.1}}" class = "form-control" >
< / td >
< td >
2018-09-28 10:35:44 +00:00
< input type = "text" id = "ip-{{server.0}}" value = "{{server.2}}" size = "14" class = "form-control" >
2018-07-27 06:46:50 +00:00
< input type = "hidden" id = "servergroup-{{server.0}}" name = "servergroup-{{server.0}}" value = "{{ group }}" >
2018-06-28 05:55:07 +00:00
< / td >
2018-10-03 10:14:57 +00:00
< td class = "checkbox" >
2018-09-01 10:43:25 +00:00
< input type = "text" id = "port-{{server.0}}" value = "{{server.10}}" size = "1" class = "form-control" >
< / td >
2018-10-03 10:14:57 +00:00
< td class = "checkbox" >
2018-06-28 05:55:07 +00:00
{% if server.5 == 1 %}
< label for = "enable-{{server.0}}" > < / label > < input type = "checkbox" id = "enable-{{server.0}}" checked >
{% else %}
< label for = "enable-{{server.0}}" > < / label > < input type = "checkbox" id = "enable-{{server.0}}" >
{% endif %}
< / td >
2018-10-03 10:14:57 +00:00
< td class = "checkbox" >
2018-06-28 05:55:07 +00:00
{% if server.4 == 1 %}
< label for = "typeip-{{server.0}}" > < / label > < input type = "checkbox" id = "typeip-{{server.0}}" checked >
{% else %}
< label for = "typeip-{{server.0}}" > < / label > < input type = "checkbox" id = "typeip-{{server.0}}" >
{% endif %}
< / td >
2018-10-03 10:14:57 +00:00
< td class = "checkbox" >
2018-07-23 07:08:43 +00:00
{% if server.8 == 1 %}
< label for = "alert-{{server.0}}" > < / label > < input type = "checkbox" id = "alert-{{server.0}}" checked >
{% else %}
< label for = "alert-{{server.0}}" > < / label > < input type = "checkbox" id = "alert-{{server.0}}" >
{% endif %}
< / td >
2018-10-03 10:14:57 +00:00
< td class = "checkbox" >
2018-08-03 19:17:03 +00:00
{% if server.9 == 1 %}
< label for = "metrics-{{server.0}}" > < / label > < input type = "checkbox" id = "metrics-{{server.0}}" checked >
{% else %}
< label for = "metrics-{{server.0}}" > < / label > < input type = "checkbox" id = "metrics-{{server.0}}" >
{% endif %}
< / td >
2018-11-26 10:00:25 +00:00
< td class = "checkbox" >
2018-11-27 17:38:04 +00:00
{% if server.12 == 1 %}
2018-11-26 10:00:25 +00:00
< label for = "active-{{server.0}}" > < / label > < input type = "checkbox" id = "active-{{server.0}}" checked >
{% else %}
< label for = "active-{{server.0}}" > < / label > < input type = "checkbox" id = "active-{{server.0}}" >
{% endif %}
< / td >
2018-06-28 05:55:07 +00:00
< td >
< select id = "slavefor-{{server.0}}" >
2018-07-25 05:25:27 +00:00
< option selected value = "0" > Not slave< / option >
2018-06-28 05:55:07 +00:00
{% for master in masters %}
{% if master.0 == server.6 %}
< option value = "{{master.0}}" selected > {{master.1}}< / option >
{% else %}
< option value = "{{master.0}}" > {{master.1}}< / option >
{% endif %}
{% endfor %}
< / select >
< / td >
< td >
2018-10-02 05:07:07 +00:00
< div class = "controlgroup" >
< select id = "credentials-{{server.0}}" >
< option disabled selected > Choose credentials< / option >
{% for ssh in sshs %}
{% if ssh.0 == server.7 %}
< option value = "{{ssh.0}}" selected > {{ssh.1}}< / option >
{% else %}
< option value = "{{ssh.0}}" > {{ssh.1}}< / option >
{% endif %}
{% endfor %}
< / select >
< button onclick = "checkSshConnect('{{server.2}}')" title = "Check SSH connect to the server {{server.1}}" > check< / button >
< / div >
2018-06-28 05:55:07 +00:00
< / td >
< td >
2018-09-28 10:35:44 +00:00
{% if server.11 != "None" %}
< input type = "text" id = "desc-{{server.0}}" value = "{{server.11}}" size = "30" class = "form-control" >
{% else %}
< input type = "text" id = "desc-{{server.0}}" value = "" size = "30" class = "form-control" >
{% endif %}
< / td >
< td >
< a class = "delete" onclick = "confirmDeleteServer({{server.0}})" title = "Delete server {{server.1}}" style = "cursor: pointer;" > < / a >
2018-06-28 05:55:07 +00:00
< / td >
< / tr >
{% endfor %}
< / table >
< br / > < span class = "add-button" title = "Add server" id = "add-server-button" > + Add< / span >
2018-10-03 10:14:57 +00:00
< br / > < br / >
2018-06-28 05:55:07 +00:00
< / div >
< div id = "ssh" >
< table id = "ssh_enable_table" class = "overview" >
< tr class = "overviewHead" style = "width: 50%;" >
< td class = "padding10 first-collumn" style = "width: 15%;" >
< span title = "It's just name alias. This alias will be userd in 'Servers' page for choose credentials" > Name(?)< / span >
< / td >
< td class = "padding10 first-collumn" style = "width: 25%;" >
< span title = "If enabled, the key will be used, if turned off - the password. Do not forget to download the keys to all servers or install the sudo without a password" > SSH key(?)< / span >
< / td >
< td >
< span title = "Enter SSH user name. If SSH key disabled, enter password for ssh user" > Credentials(?)< / span >
< / td >
< td > < / td >
< / tr >
{% for ssh in sshs %}
2018-07-27 06:46:50 +00:00
{% if ssh.5|string() == group %}
2018-08-05 14:37:14 +00:00
< tr style = "width: 50%;" id = "ssh-table-{{ssh.0}}" class = "{{ loop.cycle('odd', 'even') }}" >
2018-06-28 05:55:07 +00:00
< td class = "first-collumn" >
2018-10-03 10:14:57 +00:00
< input type = "text" id = "ssh_name-{{ssh.0}}" class = "form-control" value = "{{ssh.1}}" style = "margin-bottom: 23px;" >
2018-06-28 05:55:07 +00:00
< / td >
< td class = "first-collumn" valign = "top" style = "padding-top: 15px;" >
{% if ssh.2 == 1 %}
< label for = "ssh_enable-{{ssh.0}}" > Enable SSH key< / label > < input type = "checkbox" id = "ssh_enable-{{ssh.0}}" checked >
{% else %}
< label for = "ssh_enable-{{ssh.0}}" > Enable SSH key< / label > < input type = "checkbox" id = "ssh_enable-{{ssh.0}}" >
{% endif %}
< / td >
< td style = "padding-top: 15px;" >
< p >
< input type = "text" id = "ssh_user-{{ssh.0}}" class = "form-control" value = "{{ssh.3}}" >
< / p >
{% if ssh.2 == 1 %}
< input type = "password" id = "ssh_pass-{{ssh.0}}" class = "form-control" value = "{{ssh.4}}" style = "display: none;" >
{% else %}
< input type = "password" id = "ssh_pass-{{ssh.0}}" class = "form-control" value = "{{ssh.4}}" >
{% endif %}
< br >
< / td >
< td >
2018-09-28 10:35:44 +00:00
< a class = "delete" onclick = "confirmDeleteSsh({{ssh.0}})" style = "cursor: pointer;" > < / a >
2018-06-28 05:55:07 +00:00
< / td >
< / tr >
{% endif %}
{% endfor %}
< / table >
< br / > < span class = "add-button" title = "Add ssh" id = "add-ssh-button" > + Add< / span >
< br / > < br / >
< table class = "overview" id = "ssh-add-table" style = "display: none;" >
< tr class = "overviewHead" >
< td class = "padding10 first-collumn" style = "width: 15%;" > Name< / td >
< td class = "padding10 first-collumn" style = "width: 25%;" > SSH key< / td >
< td > Credentials< / td >
< td > < / td >
< / tr >
< tr >
< td class = "padding10 first-collumn" >
< input type = "text" name = "new-ssh-add" id = "new-ssh-add" class = "form-control" >
< / td >
< td >
< label for = "new-ssh_enable" > Enable SSH key< / label > < input type = "checkbox" id = "new-ssh_enable" checked >
< / td >
< td style = "padding-top: 15px;" >
< p >
< input type = "text" id = "ssh_user" class = "form-control" value = "{{ssh_user}}" >
< / p >
< input type = "password" id = "ssh_pass" class = "form-control" value = "{{ssh_pass}}" style = "display: none;" >
< br >
< / td >
< td >
2018-09-28 16:10:01 +00:00
< a class = "add-admin" id = "add-ssh" title = "Add new SSH credentials" style = "cursor: pointer;" > < / a >
2018-06-28 05:55:07 +00:00
< / td >
< / tr >
< / table >
< table id = "ssh_key" >
< tr class = "overviewHead" style = "width: 50%;" >
< td class = "padding10 first-collumn" style = "width: 25%;" > Upload SSH Key< / td >
< td >
< span title = "Private key. Note: The public key must be pre-installed on all servers to which you plan to connect" > Key(?)< / span >
< / td >
< td > < / td >
< / tr >
< tr style = "width: 50%;" >
< td class = "first-collumn" valign = "top" style = "padding-top: 15px;" >
< select id = "ssh-key-name" >
< option disabled selected > Choose credentials< / option >
{% for ssh in sshs %}
2018-07-27 06:46:50 +00:00
{% if ssh.5|string() == group %}
2018-06-28 05:55:07 +00:00
< option value = {{ssh.1}} > {{ssh.1}}< / option >
{% endif %}
{% endfor %}
< / select >
< / td >
< td style = "padding-top: 15px;" >
< textarea id = "ssh_cert" cols = "50" rows = "5" > < / textarea > < br / > < br / >
< a class = "ui-button ui-widget ui-corner-all" id = "ssh_key_upload" title = "Upload ssh key" onclick = "uploadSsh()" > Upload< / a >
< / td >
< td > < / td >
< / tr >
< / table >
< div id = "ajax-ssh" > < / div >
< / div >
2018-07-25 05:25:27 +00:00
< div id = "checker" >
< table id = "checker_table" class = "overview" >
< tr class = "overviewHead" style = "width: 50%;" >
< td class = "padding10 first-collumn" style = "width: 25%;" >
< span title = "Token that gave you @father_bot" > Token(?)< / span >
< / td >
< td > Chanel name< / td >
< td > < / td >
< / tr >
{% for telegram in telegrams %}
2018-07-27 06:46:50 +00:00
{% if telegram.3|string() == group %}
2018-08-05 14:37:14 +00:00
< tr style = "width: 50%;" id = "telegram-table-{{telegram.0}}" class = "{{ loop.cycle('odd', 'even') }}" >
2018-07-25 05:25:27 +00:00
< td class = "first-collumn" style = "padding-top: 20px;" >
< input type = "text" id = "telegram-token-{{telegram.0}}" class = "form-control" value = "{{telegram.1}}" style = "margin-bottom: 23px;" >
< / td >
< td >
< input type = "text" id = "telegram-chanel-{{telegram.0}}" class = "form-control" value = "{{telegram.2}}" >
< / td >
< td >
2018-09-28 10:35:44 +00:00
< a class = "delete" onclick = "confirmDeleteSsh({{telegram.0}})" style = "cursor: pointer;" > < / a >
2018-07-25 05:25:27 +00:00
< / td >
< / tr >
{% endif %}
{% endfor %}
< / table >
< br / > < span class = "add-button" title = "Telegram channel" id = "add-telegram-button" > + Add< / span >
< br / > < br / >
< table class = "overview" id = "telegram-add-table" style = "display: none;" >
< tr class = "overviewHead" >
< td class = "padding10 first-collumn" style = "width: 25%;" >
< span title = "Token that gave you @father_bot" > Token(?)< / span >
< / td >
< td >
Chanel name
< / td >
< td > < / td >
< / tr >
< tr >
< td class = "padding10 first-collumn" >
< input type = "text" name = "telegram-token-add" id = "telegram-token-add" class = "form-control" >
{% for group in ssh_group %}
< input type = "hidden" id = "new-telegram-group-add" name = "new-telegram-group-add" value = "{{ group.0 }}" >
{% endfor %}
< / td >
< td >
< input type = "text" id = "telegram-chanel-add" class = "form-control" >
< / td >
< td >
2018-09-28 16:10:01 +00:00
< a class = "add-admin" id = "add-telegram" title = "Add new Telegram channel" style = "cursor: pointer;" > < / a >
2018-07-25 05:25:27 +00:00
< / td >
< / tr >
< / table >
< div id = "ajax-telegram" > < / div >
< / div >
2018-06-28 05:55:07 +00:00
< / div >
2018-07-27 06:46:50 +00:00
< div id = "group_error" style = "display: none;" >
< div class = "alert alert-danger" >
2018-08-01 08:06:09 +00:00
< b > Do not edit this section if your group is "ALL"!< / b > Add first< a href = "users.py#groups" title = "Admin Area: Groups" > group< / a > or edit your own group at< a href = "users.py#users" title = "Admin Area: Users" > users< / a > page
2018-07-27 06:46:50 +00:00
< / div >
< / div >
2018-10-04 04:07:32 +00:00
< div id = "user-add-table" style = "display: none;" >
2018-10-03 10:14:57 +00:00
< table class = "overview" >
< tr >
2018-10-04 04:07:32 +00:00
< td colspan = "2" >
< p class = "validateTips alert alert-success" > Form fields tag "< span class = "need-field" > *< / span > " are required.< / p >
< / td >
< / tr >
< tr >
< td class = "padding20" >
New user
< span class = "need-field" > *< / span >
< / td >
< td >
< input type = "text" name = "new-username" id = "new-username" class = "form-control" >
2018-11-08 08:49:03 +00:00
{% if ldap_enable == '1' %}
< a href = "#" title = "Search user in AD" id = "search_ldap_user" > Search user in AD< / a >
{% endif %}
2018-10-04 04:07:32 +00:00
< / td >
< / tr >
< tr >
< td class = "padding20" >
Password
< span class = "need-field" > *< / span >
< / td >
< td >
< input type = "password" name = "new-password" id = "new-password" class = "form-control" >
< / td >
< / tr >
< tr >
< td class = "padding20" >
Email
< / td >
< td >
< input type = "text" name = "new-email" id = "new-email" class = "form-control" >
< / td >
< / tr >
< tr >
< td class = "padding20" >
Role
< span class = "need-field" > *< / span >
< / td >
< td >
< select id = "new-role" name = "new-role" >
< option disabled selected > Choose role< / option >
{% for role in roles %}
{% if role.1 != "admin" %}
< option value = "{{ role.1 }}" > {{ role.1 }}< / option >
{% endif %}
{% endfor %}
< / select >
< / td >
< / tr >
< / table >
< / div >
< div id = "server-add-table" style = "display: none;" >
< form id = "server-add-form" >
< table class = "overview" >
< tr >
< td colspan = "2" >
< p class = "validateTips alert alert-success" > Form fields tag "< span class = "need-field" > *< / span > " are required.< / p >
< / td >
< / tr >
< tr >
< td class = "padding20" >
New hostname
< span class = "need-field" > *< / span >
< / td >
2018-10-03 10:14:57 +00:00
< td >
< input type = "text" name = "new-server-add" id = "new-server-add" class = "form-control" >
< / td >
< / tr >
< tr >
2018-10-04 04:07:32 +00:00
< td class = "padding20" >
IP
< span class = "need-field" > *< / span >
< / td >
2018-10-03 10:14:57 +00:00
< td >
< input type = "text" name = "new-ip" id = "new-ip" size = "14" class = "form-control" >
< input type = "hidden" id = "new-sshgroup" name = "new-sshgroup" value = "{{ group }}" >
< / td >
< / tr >
< tr >
2018-10-04 04:07:32 +00:00
< td class = "padding20" title = "SSH port" >
Port
< span class = "need-field" > *< / span >
< / td >
2018-10-03 10:14:57 +00:00
< td >
< input type = "text" name = "new-port" id = "new-port" size = 1 class = "form-control" value = "22" >
< / td >
< / tr >
< tr >
< td class = "padding20" > Enable< / td >
< td >
< label for = "enable" > < / label > < input type = "checkbox" id = "enable" checked >
< / td >
< / tr >
< tr >
2018-10-04 04:07:32 +00:00
< td class = "padding20" title = "Vitrual IP, something like VRRP" > Virt< / td >
2018-10-03 10:14:57 +00:00
< td >
< label for = "typeip" > < / label > < input type = "checkbox" id = "typeip" >
< / td >
< / tr >
< tr >
2018-10-04 04:07:32 +00:00
< td class = "padding20" title = "Alert if backend change status" > Alert< / td >
2018-10-03 10:14:57 +00:00
< td >
< label for = "alert" > < / label > < input type = "checkbox" id = "alert" >
< / td >
< / tr >
< tr >
2018-10-04 04:07:32 +00:00
< td class = "padding20" title = "Enable save and show metrics" > Metrics< / td >
2018-10-03 10:14:57 +00:00
< td >
< label for = "metrics" > < / label > < input type = "checkbox" id = "metrics" >
< / td >
< / tr >
2018-11-26 10:00:25 +00:00
< tr >
< td class = "padding20" title = "Keep active HAProxy service if down" > Active< / td >
< td >
< label for = "active" > < / label > < input type = "checkbox" id = "active" >
< / td >
< / tr >
2018-10-03 10:14:57 +00:00
< tr >
< td class = "padding20" title = "Actions with master config will automatically apply on slave" > Slave for< / td >
< td >
< select id = "slavefor" >
< option selected value = "0" > Not slave< / option >
{% for master in masters %}
< option value = "{{master.0}}" > {{master.1}}< / option >
{% endfor %}
< / select >
< / td >
< / tr >
< tr >
2018-10-04 04:07:32 +00:00
< td class = "padding20" >
Credentials
< span class = "need-field" > *< / span >
< / td >
2018-10-03 10:14:57 +00:00
< td >
< select id = "credentials" required >
< option disabled selected value = "0" > Choose credentials< / option >
{% for ssh in sshs %}
{% if ssh.5|string() == group %}
< option value = "{{ssh.0}}" > {{ssh.1}}< / option >
{% endif %}
{% endfor %}
< / select >
< / td >
< / tr >
< tr >
< td class = "padding20" > Desciption< / td >
< td >
< input type = "text" id = "desc" size = "30" class = "form-control" >
< / td >
< / tr >
< / table >
2018-10-04 04:07:32 +00:00
< input type = "submit" tabindex = "-1" style = "position:absolute; top:-1000px" >
< / form >
2018-10-03 10:14:57 +00:00
< / div >
2018-07-27 06:46:50 +00:00
< script >
if($('#new-server-group-add').val() == 1) {
$('#group_error').css('display', 'block');
2018-10-03 10:14:57 +00:00
$('#add-user-button').css('display', 'none');
2018-07-27 06:46:50 +00:00
$('#add-server-button').css('display', 'none');
$('#add-ssh-button').css('display', 'none');
$('#ssh_key_upload').css('display', 'none');
$('#add-telegram-button').css('display', 'none');
2018-07-30 03:09:26 +00:00
$('input').css('color', 'rgba(0, 0, 0, 0.3)');
2018-07-27 06:46:50 +00:00
setTimeout(function() {
$("input[type=checkbox]").checkboxradio( "disable" );
$("select").selectmenu( "disable" );
2018-10-01 16:51:37 +00:00
$("button").button( "disable" );
2018-07-27 06:46:50 +00:00
$("input").attr( "readonly", "readonly" );
2018-09-28 10:35:44 +00:00
$('.delete').remove()
2018-07-27 06:46:50 +00:00
}, 500 );
}
< / script >
2018-09-28 10:35:44 +00:00
< style >
.ui-selectmenu-button.ui-button {
2018-10-03 10:14:57 +00:00
width: 10em;
}
.checkbox {
width: 90px;
}
.group-field, .slave-field {
width: 15%;
}
.cred-field {
width: 20%;
}
2018-09-28 10:35:44 +00:00
< / style >
2018-06-28 05:55:07 +00:00
{% endblock %}