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

{{ macro.name }}

Action
Delete
{% for action in currentActions %}
{{ action.name }} {% if action.device %} ({{ action.device.name }}) {% endif %}
{% csrf_token %}
{% endfor %}

Add a new action to the macro.

Select a new action:

{% if devices %} {% for device in devices %}

{{ device.name }}

{% for action in device.actions %}
{% csrf_token %}
{% endfor %}
{% endfor %} {% endif %}
{% endblock %}