You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

129 lines
5.0 KiB

{% extends "base.html" %}
{% load compress hc_extras static tz %}
{% block title %}Account Settings - {{ site_name }}{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<h1 class="settings-title">
Settings
<small>{{ request.user.email }}</small>
</h1>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<ul class="nav nav-pills nav-stacked">
<li><a href="{% url 'hc-profile' %}">Account</a></li>
<li><a href="{% url 'hc-appearance' %}">Appearance</a></li>
{% if show_pricing %}
<li><a href="{% url 'hc-billing' %}">Billing</a></li>
{% endif %}
<li class="active"><a href="{% url 'hc-notifications' %}">Email Reports</a></li>
</ul>
</div>
<div class="col-sm-9 col-md-6">
<div class="panel panel-{{ status }}">
<div class="panel-body settings-block">
<form method="post">
{% csrf_token %}
<h2>Email Reports</h2>
<input id="tz" type="hidden" name="tz" value="{{ profile.tz }}" />
<p>Periodic email reports:</p>
<label class="radio-container">
<input
type="radio"
name="reports"
value="off"
{% if profile.reports == "off" %} checked {% endif %}>
<span class="radiomark"></span>
Off
</label>
<label class="radio-container">
<input
type="radio"
name="reports"
value="weekly"
{% if profile.reports == "weekly" %} checked {% endif %}>
<span class="radiomark"></span>
<strong>Weekly</strong> on Mondays
</label>
<label class="radio-container">
<input
type="radio"
name="reports"
value="monthly"
{% if profile.reports == "monthly" %} checked {% endif %}>
<span class="radiomark"></span>
<strong>Monthly</strong> on 1st of every month
</label>
<br>
<p>Ongoing reminders if any checks are down:</p>
<label class="radio-container">
<input
type="radio"
name="nag_period"
value="0"
{% if profile.nag_period.total_seconds == 0 %} checked {% endif %}>
<span class="radiomark"></span>
Do not remind me
</label>
<label class="radio-container">
<input
type="radio"
name="nag_period"
value="86400"
{% if profile.nag_period.total_seconds == 86400 %} checked {% endif %}>
<span class="radiomark"></span>
Remind me <strong>daily</strong>
</label>
<label class="radio-container">
<input
type="radio"
name="nag_period"
value="3600"
{% if profile.nag_period.total_seconds == 3600 %} checked {% endif %}>
<span class="radiomark"></span>
Remind me <strong>hourly</strong>
</label>
<br />
<p class="text-muted">
Reports will be delivered to {{ profile.user.email }}. <br />
{% if profile.next_report_date %}
{% timezone profile.tz %}
Next {{ profile.reports }} report date is
{{ profile.next_report_date|date:"F j, Y" }}.
{% endtimezone %}
{% endif %}
</p>
<br />
<button
type="submit"
class="btn btn-default pull-right">Save Changes</button>
</form>
</div>
{% if status == "info" %}
<div class="panel-footer">
Your settings have been updated!
</div>
{% endif %}
</div>
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-3.6.0.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/notifications.js' %}"></script>
{% endcompress %}
{% endblock %}