{% extends "profile_base.html" %} {% set profile_nav_active = "timers" %} {% block profile_content %}
{% set breadcrumbs = [ {"name": current_user.name | display_name(current_user.username), "href": "/profile"}, {"name": "Timers", "href": "/profile/timers"}, {"name": "New" if is_new else "Edit"} ] %} {% include "partials/breadcrumbs.html" %}
{% include "partials/flash.html" %}
{% if is_new %}New Timer{% else %}Edit Timer{% endif %}
{% include "partials/timer_form_fields.html" %}
Cancel
{% if not is_new and timer %}
Current Schedule

{{ timer.schedule }}

Next run
{% if timer.next_run_at %}{{ timer.next_run_at }}{% else %}—{% endif %}
Last run
{% if timer.last_run_at %}{{ timer.last_run_at }}{% else %}—{% endif %}
Times fired
{{ timer.run_count }}
{% endif %}
{% endblock %}