{% extends 'base/layout.html' %} {% load form_helpers %} {% block title %}Generate — {{ object.name }}{% endblock %} {% block content %}
{{ object.name }}
{% if object.description %}

{{ object.description }}

{% endif %}
{% csrf_token %}
{{ form.devices }}
Physical devices from DCIM.
{{ form.virtual_machines }}
VMs from Virtualization. Combined with devices above into the devices loop.
{{ form.extra_vars }}
One per line: key=value
e.g. change_request=ITSUP-1234
{% if error %}
Template error: {{ error }}
{% endif %} {% if rendered %}
Generated Output
{% else %}

Select devices and click Generate Document to see output here.

{% endif %}
{% endblock %}