mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Кнопка жалоб в панели
This commit is contained in:
parent
9f7882e1f8
commit
37048fc0c8
2 changed files with 20 additions and 2 deletions
|
@ -95,6 +95,24 @@
|
||||||
<!-- /.box-header -->
|
<!-- /.box-header -->
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
<!-- select -->
|
<!-- select -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label><%= translate("common:REPORTS") %></label>
|
||||||
|
<select class="form-control" name="reports">
|
||||||
|
<% if(guild.plugins.reports && bot.channels.cache.has(guild.plugins.reports)) { %>
|
||||||
|
<option selected="selected">
|
||||||
|
#<%= bot.channels.cache.get(guild.plugins.reports).name %></option>
|
||||||
|
<% guild.channels.cache.filter((ch) => ch.type === "text" && ch.id !== guild.plugins.reports).forEach((ch) => { %>
|
||||||
|
<option>#<%= ch.name %></option>
|
||||||
|
<% }); %>
|
||||||
|
<option><%= translate("common:NO_CHANNEL") %></option>
|
||||||
|
<% } else { %>
|
||||||
|
<option selected="selected"><%= translate("common:NO_CHANNEL") %></option>
|
||||||
|
<% guild.channels.cache.filter((ch) => ch.type === "text").forEach((ch) => { %>
|
||||||
|
<option>#<%= ch.name %></option>
|
||||||
|
<% }); %>
|
||||||
|
<% } %>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label><%= translate("common:SUGGESTIONS") %></label>
|
<label><%= translate("common:SUGGESTIONS") %></label>
|
||||||
<select class="form-control" name="suggestions">
|
<select class="form-control" name="suggestions">
|
||||||
|
|
|
@ -20,6 +20,6 @@
|
||||||
"ENABLE_MESSAGES": "Включить сообщения",
|
"ENABLE_MESSAGES": "Включить сообщения",
|
||||||
"DISABLE_AUTOROLE": "Выключить автоназначение роли",
|
"DISABLE_AUTOROLE": "Выключить автоназначение роли",
|
||||||
"ENABLE_AUTOROLE": "Включить автоназначение роли",
|
"ENABLE_AUTOROLE": "Включить автоназначение роли",
|
||||||
"SELECTOR": "Выбор сервера",
|
"SELECTOR": "Выбор серверов",
|
||||||
"MANAGE": "Управление"
|
"MANAGE": "Управление"
|
||||||
}
|
}
|
Loading…
Reference in a new issue