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.

18 lines
535 B

  1. {% load humanize tz %}
  2. {% if bad_schedule %}
  3. <p id="invalid-arguments">Invalid cron expression</p>
  4. {% elif bad_tz %}
  5. <p id="invalid-arguments">Invalid timezone</p>
  6. {% else %}
  7. <table id="cron-preview-table" class="table">
  8. <tr><th id="cron-preview-title" colspan="3">Expected Ping Dates</th></tr>
  9. {% for naive, aware in dates %}
  10. <tr>
  11. <td>{{ naive|date:"M j, H:i" }}</td>
  12. <td>{{ aware|naturaltime }}</td>
  13. <td class="hidden-xs">{{ aware|date:"c" }}</td>
  14. </tr>
  15. {% endfor %}
  16. </table>
  17. {% endif %}