{% extends 'base.html' %} {% block header %}
{% csrf_token %}

Multiple Devices


Steps

1-Review or edit Devices and choose to Install or Remove them

2-Double-check selected Devices

3-Register Activity
{% endblock %} {% block content %} {% with config=settings.PLUGINS_CONFIG.conectividadeapp %}
{% csrf_token %}

1-Review or edit Devices and choose to Install or Remove them

{% for act in obj %} {% empty %} {% endfor %}
ID/Device Name Site/Rack IPs Modelo/Serial/Tombo(Asset Tag)
{{act.id}} {{act.name}} {{act.site}}-{{act.rack.name}} {{act.primary_ip4}} - {{act.primary_ip6 }} {{act.device_type}}-{{act.serial}} - {{act.asset_tag}}
No Devices were selected

Will you Install or Remove the Devices?



Add Activity for listed Devices

2-Double-check Devices to be {% if op == "3" %} Installed {% endif %} {% if op == "4" %} Removed {% endif %}


{% if op == "3" or op == "4" %} {% for act in obj %} {% empty %} {% endfor %}
Selected devices Site/Rack IPs Modelo/Serial/Tombo(Asset Tag)
{{act.id}} {{act.name}} {{act.site}}-{{act.rack.name}} {{act.primary_ip4}} - {{act.primary_ip6 }} {{act.device_type}}-{{act.serial}} - {{act.asset_tag}}
No Select devices list
{% endif %}

3-Register activity

{% if op == "3" or op == "4" %} {% include 'conectividadeapp/activity_form_select_multipledevice2.html' %} {% endif %}
{% endwith %} {% endblock %}