{% extends "base.html" %} {% comment %} {% extends "jqm/simple.html" %} {% endcomment %} {% block title %} Webmote - Example {% endblock %} {% block page_title %} Webmote - Schedular {% endblock %} {% block content %}

{{ schedule.name }}

{% if schedule.schedlet_set %}
Action
Delete
{% for s in schedule.schedlet_set.all %}
{{ s.action.name }}
{% csrf_token %}
{% endfor %} {% else %}

Currently there are no schedlets in this schedule...

{% endif %}

Add a Schedlet

{% csrf_token %} {{ schedletForm.as_table }}
{% endblock %}