2022-02-11 17:44:08 +00:00
|
|
|
<div style="margin: 0 12px 12px 12px;">
|
|
|
|
<div class="create-reminder">
|
|
|
|
<button class="button is-rounded is-light" id="showReminderCreator">
|
|
|
|
<strong>Create Reminder <span class="icon left-pad"><i class="fas fa-chevron-down"></i></span></strong>
|
|
|
|
</button>
|
|
|
|
<div id="reminderCreator">
|
|
|
|
{% set creating = true %}
|
|
|
|
{% include "reminder_dashboard/guild_reminder" %}
|
2022-03-19 17:41:34 +00:00
|
|
|
{% set creating = false %}
|
2022-02-11 17:44:08 +00:00
|
|
|
</div>
|
|
|
|
|
2022-03-20 15:46:22 +00:00
|
|
|
<div class="field" style="margin-top: 22px;">
|
|
|
|
<div class="control has-icons-left">
|
|
|
|
<div class="select is-small">
|
|
|
|
<select id="orderBy">
|
|
|
|
<option value="time" selected>Time</option>
|
|
|
|
<option value="name">Name</option>
|
|
|
|
<option value="channel">Channel</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="icon is-small is-left">
|
|
|
|
<i class="fas fa-sort-amount-down"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-02-11 17:44:08 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="guildReminders">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-20 15:46:22 +00:00
|
|
|
|
|
|
|
<script src="/static/js/sort.js"></script>
|