{% extends 'base.html' %}


{% block content %}
search device
{% csrf_token %}
Input the Device


Input activity for device
{% if device_obj %}
{% csrf_token %}
{{device_obj.name}}
Modelo Serial
{{device_obj.device_type}} {{device_obj.serial}}
Mac IP
{{device_obj.mac}} {{device_obj.name}}
Tombo Site/rack
{{device_obj.asset_tag}} {{device_obj.site}}-{{device_obj.rack.name}}
Activity
{{form}}
{% endif %}

view list and search activity
Listing Activity for the Devices
Input the device previously

{% for i in registro %} {% endfor %}
Nome Modelo Serial Tombo Mac IP
Site Data Instaladores Atividade Descricao
{{ i.when }} {% for k in i.actor.all %}

{{k.name}},

{% endfor %}
{{ i.type }} {{ i.description }}
{% endblock %}