patreon
This commit is contained in:
22
web/templates/support/dashboard.tera
Normal file
22
web/templates/support/dashboard.tera
Normal file
@ -0,0 +1,22 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Dashboard" %}
|
||||
{% set page_subtitle = "" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Accessing the dashboard</p>
|
||||
<p class="content">
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
@ -33,6 +33,24 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Deleting reminders you've just created</p>
|
||||
<p class="content">
|
||||
If you made a mistake, you can quickly delete a reminder you made by pressing "Cancel"
|
||||
<br>
|
||||
</p>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/cancel-1.png" alt="Cancel button">
|
||||
</figure>
|
||||
<figure>
|
||||
<img src="/static/img/support/delete_reminder/cancel-2.png" alt="Reminder deleted">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
|
26
web/templates/support/iemanager.tera
Normal file
26
web/templates/support/iemanager.tera
Normal file
@ -0,0 +1,26 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Import/Export" %}
|
||||
{% set page_subtitle = "" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Export your data</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>
|
||||
|
||||
{% endblock %}
|
70
web/templates/support/intervals.html.tera
Normal file
70
web/templates/support/intervals.html.tera
Normal file
@ -0,0 +1,70 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Intervals" %}
|
||||
{% set page_subtitle = "Interval reminders, or repeating reminders, are available to our Patreon supporters" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Fixed intervals</p>
|
||||
<p class="content">
|
||||
The main type of interval is the fixed interval. Fixed intervals are ideal for hourly, daily, or
|
||||
reminders repeating at any other fixed amount of time.
|
||||
<br>
|
||||
You can create fixed interval reminders via the dashboard or via the <code>/remind</code> command.
|
||||
When you have filled out the "time" and "content" on the command, press <kbd>tab</kbd>. Select the
|
||||
"interval" option. Then, write the interval you wish to use: for example, "1 day" for daily (starting
|
||||
at the time specified in "time").
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Daylight savings</p>
|
||||
<p class="content">
|
||||
If you live in a region that uses daylight savings (DST), then your interval reminders may become
|
||||
offset by an hour due to clock changes.
|
||||
<br>
|
||||
Reminder Bot offers a quick solution to this via the <code>/offset</code> command. This command
|
||||
moves all existing reminders on a server by a certain amount of time. You can use offset to move
|
||||
your reminders forward or backward by an hour when daylight savings happens.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Monthly/yearly intervals</p>
|
||||
<p class="content">
|
||||
Monthly or yearly intervals are configured the same as fixed intervals. Instead of a fixed time
|
||||
interval, these reminders repeat on a certain day each month or each year. This makes them ideal
|
||||
for marking certain dates.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="hero is-small">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">Interval expiration</p>
|
||||
<p class="content">
|
||||
An expiration time can also be specified, both via commands and dashboard, for repeating reminders.
|
||||
This is optional, and if omitted, the reminder will repeat indefinitely.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
@ -3,8 +3,8 @@
|
||||
{% block init %}
|
||||
{% set title = "Support" %}
|
||||
|
||||
{% set page_title = "Timezone Help" %}
|
||||
{% set page_subtitle = "Timezones are tricky. Read on for help" %}
|
||||
{% set page_title = "Timezones" %}
|
||||
{% set page_subtitle = "" %}
|
||||
{% set show_invite = false %}
|
||||
{% endblock %}
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
<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
|
||||
You can also 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.
|
||||
|
Reference in New Issue
Block a user