healthchecks_healthchecks/templates/front/cron_preview.html
Pēteris Caune d65f41d192
Add support for systemd's OnCalendar schedules
(work-in-progress)

cc: #919
2023-12-06 15:42:57 +02:00

26 lines
746 B
HTML

{% load humanize tz %}
{% if bad_schedule %}
<p id="invalid-arguments">
Invalid cron expression. <br />
Please check the <a href="{% url 'hc-docs-cron' %}">supported cron syntax features</a>.
</p>
{% elif bad_tz %}
<p id="invalid-arguments">Invalid timezone.</p>
{% else %}
{% if desc %}<div id="cron-description">“{{ desc }}”</div>{% endif %}
<table id="cron-preview-table" class="table">
<tr><th id="cron-preview-title" colspan="3">Expected Ping Dates</th></tr>
{% for d in dates %}
<tr>
{% timezone tz %}
<td>{{ d|date:"M j, H:i" }}</td>
{% endtimezone %}
<td>{{ d|naturaltime }}</td>
<td class="hidden-xs">{{ d|date:"c" }}</td>
</tr>
{% endfor %}
</table>
{% endif %}