{% extends "base.html" %} {% load url from future %} {% block title %} {{ device.name }} {% endblock %} {% block page_title %} {{ device.name }} {% endblock %} {% block content %}

Record an action

{% if actions %}

Add actions automatically

{% endif %}

Add an action manually

{% csrf_token %} {{ actionForm.as_table }}

Available Actions

{% if actions %}
Name
Test
Delete
{% for action in actions %}
{{ action.name }}
{% csrf_token %}
{% endfor %}
{% else %}

Currently there are no actions.

{% endif %}

Edit Device

{% csrf_token %} {{ deviceForm.as_table }}
{% endblock %}