{% extends "layout-split-2.html" %} {% load i18n %} {% load paginator_tags %} {% load scheduler_tags %} {% block title %}Scheduled Events{% endblock %} {% block content %}
{% trans "Event" %} | {% trans "Description" %} | {% trans "Month" %} | {% trans "Day of Month" %} | {% trans "Day of Week" %} | {% trans "Hour" %} | {% trans "Minute" %} | {% trans "Start Time" %} | {% trans "End Time" %} | {% trans "Count" %} | {% trans "Active" %} | |
---|---|---|---|---|---|---|---|---|---|---|---|
{{ schedule.callback }} | {% if schedule.description %}{{ schedule.description }}{% else %}n/a{% endif %} | {{ schedule.months|display_list|default:"All" }} | {{ schedule.days_of_month|display_list|default:"All" }} | {{ schedule.days_of_week|display_list|default:"All" }} | {{ schedule.hours|display_list|default:"All" }} | {{ schedule.minutes|display_list }} | {% if schedule.end_time %}{{ schedule.end_time|date:"D M d H:i" }}{% else %}n/a{% endif %} | {% if schedule.start_time %}{{ schedule.date_joined|date:"D M d H:i" }}{% else %}n/a{% endif %} | {% if schedule.count %}{{ schedule.count }}{% else %}n/a{% endif %} | {% if schedule.active %}True{% else %}False{% endif %} | |
{% trans "No schedules yet" %} | |||||||||||
{% paginator schedules %} |