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.

25 lines
745 B

  1. {% load humanize tz %}
  2. {% if bad_schedule %}
  3. <p id="invalid-arguments">
  4. Invalid cron expression. <br />
  5. Please check the <a href="{% url 'hc-docs-cron' %}">supported cron syntax features</a>.
  6. </p>
  7. {% elif bad_tz %}
  8. <p id="invalid-arguments">Invalid timezone</p>
  9. {% else %}
  10. {% if desc %}<div id="cron-description">“{{ desc }}”</div>{% endif %}
  11. <table id="cron-preview-table" class="table">
  12. <tr><th id="cron-preview-title" colspan="3">Expected Ping Dates</th></tr>
  13. {% for d in dates %}
  14. <tr>
  15. {% timezone tz %}
  16. <td>{{ d|date:"M j, H:i" }}</td>
  17. {% endtimezone %}
  18. <td>{{ d|naturaltime }}</td>
  19. <td class="hidden-xs">{{ d|date:"c" }}</td>
  20. </tr>
  21. {% endfor %}
  22. </table>
  23. {% endif %}