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.

22 lines
642 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 naive, aware in dates %}
  13. <tr>
  14. <td>{{ naive|date:"M j, H:i" }}</td>
  15. <td>{{ aware|naturaltime }}</td>
  16. <td class="hidden-xs">{{ aware|date:"c" }}</td>
  17. </tr>
  18. {% endfor %}
  19. </table>
  20. {% endif %}