support articles
This commit is contained in:
38
web/templates/support/create_reminder.html.tera
Normal file
38
web/templates/support/create_reminder.html.tera
Normal file
@ -0,0 +1,38 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Timezone Help" %}
|
||||
{% set page_subtitle = "Timezones are tricky. Read on for help" %}
|
||||
{% set show_invite = false %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Create reminders via commands</p>
|
||||
<p class="content">
|
||||
You can create reminders with the <code>/remind</code> command.
|
||||
<br>
|
||||
Fill out the "time" and "content" fields. If you wish, press on "Optional" to view other options
|
||||
for the reminder.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Create reminders via the dashboard</p>
|
||||
<p class="content">
|
||||
Reminders can also be created on the dashboard.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
64
web/templates/support/delete_reminder.html.tera
Normal file
64
web/templates/support/delete_reminder.html.tera
Normal file
@ -0,0 +1,64 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Timezone Help" %}
|
||||
{% set page_subtitle = "Timezones are tricky. Read on for help" %}
|
||||
{% set show_invite = false %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Deleting reminders via commands</p>
|
||||
<p class="content">
|
||||
Deleting reminders is as easy as typing <code>/del</code>.
|
||||
<br>
|
||||
</p>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/cmd-1.png" alt="/del">
|
||||
</figure>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/cmd-2.png" alt="Reminder deleted">
|
||||
</figure>
|
||||
<p class="content">
|
||||
Note that you cannot delete reminders that were set for another user's direct messages. To delete
|
||||
reminders in your direct messages, use <code>/del</code> in the direct message channel with
|
||||
Reminder Bot.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Deleting reminders via the dashboard</p>
|
||||
<p class="content">
|
||||
Reminders in servers can be deleted via the dashboard. First, select your server from the menu.
|
||||
</p>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/1.png" alt="Selecting server">
|
||||
</figure>
|
||||
<br>
|
||||
<p class="content">
|
||||
Then, find the reminder you wish to delete.
|
||||
</p>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/2.png" alt="Finding reminder">
|
||||
</figure>
|
||||
<br>
|
||||
<p class="content">
|
||||
Finally, press the 'Delete' button under the reminder.
|
||||
</p>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/3.png" alt="Delete button">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
47
web/templates/support/timezone.html.tera
Normal file
47
web/templates/support/timezone.html.tera
Normal file
@ -0,0 +1,47 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Timezone Help" %}
|
||||
{% set page_subtitle = "Timezones are tricky. Read on for help" %}
|
||||
{% set show_invite = false %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Selecting your timezone manually</p>
|
||||
<p class="content">
|
||||
To select your timezone manually, use <code>/timezone</code>. This will set your timezone
|
||||
across all servers with Reminder Bot.
|
||||
<br>
|
||||
You should only ever have to do this once. To avoid needing to change timezone due to daylight
|
||||
savings, choose a DST-aware region, for example <strong>Europe/London</strong> instead of
|
||||
<strong>GMT</strong>, or <strong>US/New_York</strong> instead of <strong>EST</strong>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Selecting your timezone automatically</p>
|
||||
<p class="content">
|
||||
A new feature we offer is the ability to configure Reminder Bot's timezone from your browser. To do
|
||||
this, go to our dashboard, press 'Timezone' in the bottom left (desktop) or at the bottom of the
|
||||
navigation menu (mobile). Then, choose 'Set Bot Timezone' to set Reminder Bot to use your browser's
|
||||
timezone.
|
||||
<br>
|
||||
From here, you can also configure the dashboard to alternatively use the manually configured
|
||||
timezone instead of the browser's timezone, if your browser is reporting your timezone incorrectly,
|
||||
or if you have a special use-case.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user