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.

24 lines
671 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. <table id="cron-preview-table" class="table">
  11. <tr><th id="cron-preview-title" colspan="3">Expected Ping Dates</th></tr>
  12. {% for d in dates %}
  13. <tr>
  14. {% timezone tz %}
  15. <td>{{ d|date:"M j, H:i" }}</td>
  16. {% endtimezone %}
  17. <td>{{ d|naturaltime }}</td>
  18. <td class="hidden-xs">{{ d|date:"c" }}</td>
  19. </tr>
  20. {% endfor %}
  21. </table>
  22. {% endif %}