gaber-elsayed

Untitled

May 23rd, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <div class="tab-pane fade" id="logs" role="tabpanel" aria-labelledby="logs-tab">
  2. <!-- <% if %> -->
  3. <label for="exampleFormControlSelect1">Active Protector</label>
  4. <label class="switch">
  5. <% if (logdb.get(guild.id, "status") == true) { %>
  6. <input id="logsEnable" type="checkbox" checked>
  7. <% } else { %>
  8. <input id="logsEnable" type="checkbox">
  9. <% } %>
  10. <span class="slider round"></span>
  11. </label>
  12. <label for="exampleFormControlSelect1">Select channel:</label>
  13. <% if (logdb.get(guild.id, "ch") == null) { %>
  14. <select name="Logs channel" class="form-control" id="logch">
  15. <%guild.channels.filter(c => c.type === "text").forEach(c => {%>
  16. <% if (c.id == logdb.get(guild.id, "ch")) { %>
  17. <option value="<%= c.id %>" selected> # <%= c.name %></option>
  18. <% } else { %>
  19. <option value="<%= c.id %>"> # <%= c.name %></option>
  20. <% } %>
  21. <%})%>
  22. </select>
  23. <button onclick="savelogs()" class="btn btn-success"><span class=" fa fa-check"></span> Save
  24. changes</button>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment