{% extends "ui/base-devices.html" %}
{% load url from future %}
{% load icons %}
{% block content %}
{% if deployment_status %}
The deployment is running. Deployment status: {{ deployment_status }} Status of plugins execution:
{% for plugin in plugins %}
{{ plugin.name }}
{% endfor %}
{% endif %}
{% include 'ui/device-form.html' with form=form %}
{% if property_form %}
{% include 'ui/device-properties.html' with form=property_form %}
{% endif %}
|
Owner |
{% for o in device.venture.all_ownerships %}
{{ o|owner_icon }} |
{{ o.owner }} |
{% endfor %}
{% if device.venture.department %}
{{ device.venture|venture_icon }} |
{{ device.venture.department }} |
{% endif %}
{% endblock content %}