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

Multiple Device


Steps

1-View details or edit devices and choince activity

2-Check list device

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

1-View details or edit devices and choince activity

{% 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 Select devices list

select activity for devices list:



Input activity for devices list

2-Check list device to create activity {% if op == "3" %} Install {% endif %} {% if op == "4" %} Remove {% 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 %}