Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div class="tab-pane fade" id="logs" role="tabpanel" aria-labelledby="logs-tab">
- <!-- <% if %> -->
- <label for="exampleFormControlSelect1">Active Protector</label>
- <label class="switch">
- <% if (logdb.get(guild.id, "status") == true) { %>
- <input id="logsEnable" type="checkbox" checked>
- <% } else { %>
- <input id="logsEnable" type="checkbox">
- <% } %>
- <span class="slider round"></span>
- </label>
- <label for="exampleFormControlSelect1">Select channel:</label>
- <% if (logdb.get(guild.id, "ch") == null) { %>
- <select name="Logs channel" class="form-control" id="logch">
- <%guild.channels.filter(c => c.type === "text").forEach(c => {%>
- <% if (c.id == logdb.get(guild.id, "ch")) { %>
- <option value="<%= c.id %>" selected> # <%= c.name %></option>
- <% } else { %>
- <option value="<%= c.id %>"> # <%= c.name %></option>
- <% } %>
- <%})%>
- </select>
- <button onclick="savelogs()" class="btn btn-success"><span class=" fa fa-check"></span> Save
- changes</button>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment