Кнопка жалоб в панели

This commit is contained in:
JonnyBro 2021-12-18 20:20:54 +05:00
parent 9f7882e1f8
commit 37048fc0c8
2 changed files with 20 additions and 2 deletions

View file

@ -95,6 +95,24 @@
<!-- /.box-header -->
<div class="box-body">
<!-- 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">
<label><%= translate("common:SUGGESTIONS") %></label>
<select class="form-control" name="suggestions">

View file

@ -20,6 +20,6 @@
"ENABLE_MESSAGES": "Включить сообщения",
"DISABLE_AUTOROLE": "Выключить автоназначение роли",
"ENABLE_AUTOROLE": "Включить автоназначение роли",
"SELECTOR": "Выбор сервера",
"SELECTOR": "Выбор серверов",
"MANAGE": "Управление"
}
}