devicehub-django/dashboard/templates/unassigned_devices.html

59 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2024-07-05 13:32:07 +00:00
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class="row">
<div class="col">
<h3>{{ subtitle }}</h3>
</div>
<div class="col text-center">
2024-07-30 17:38:04 +00:00
{% if lot %}
2024-07-30 11:37:08 +00:00
<a href="{% url 'lot:documents' object.id %}" type="button" class="btn btn-green-admin">
2024-07-05 13:32:07 +00:00
<i class="bi bi-folder2"></i>
2024-07-30 11:37:08 +00:00
{% trans 'Documents' %}
2024-07-05 13:32:07 +00:00
</a>
2024-07-30 17:38:04 +00:00
{% endif %}
2024-07-05 13:32:07 +00:00
<a href="{# url 'idhub:admin_people_activate' object.id #}" type="button" class="btn btn-green-admin">
<i class="bi bi-reply"></i>
{% trans 'Exports' %}
</a>
2024-07-30 17:38:04 +00:00
{% if lot %}
2024-07-30 11:37:08 +00:00
<a href="{% url 'lot:annotations' object.id %}" type="button" class="btn btn-green-admin">
2024-07-05 13:32:07 +00:00
<i class="bi bi-tag"></i>
2024-07-30 11:37:08 +00:00
{% trans 'Annotations' %}
2024-07-05 13:32:07 +00:00
</a>
2024-07-30 17:38:04 +00:00
{% endif %}
2024-07-05 13:32:07 +00:00
</div>
</div>
<div class="dataTable-container">
2024-07-09 11:34:30 +00:00
<form method="post">
{% csrf_token %}
2024-07-05 13:32:07 +00:00
<table class="table">
<thead>
<tr>
<th scope="col" data-sortable="">
<a class="dataTable-sorter" href="#">Title</a>
</th>
</tr>
</thead>
{% for dev in devices %}
<tbody>
<tr>
2024-07-09 11:34:30 +00:00
<td>
<input type="checkbox" name="devices" value="{{ dev.id }}" />
</td>
2024-07-05 13:32:07 +00:00
<td>
2024-07-15 14:23:14 +00:00
<a href="{% url 'device:details' dev.id %}">
{{ dev.type }} {{ dev.manufacturer }} {{ dev.model }}
</a>
2024-07-05 13:32:07 +00:00
</td>
</tr>
</tbody>
{% endfor %}
</table>
2024-07-10 08:24:40 +00:00
<button type="submit" value="{% url 'lot:del_devices' %}" name="url">Remove</button> <button type="submit" name="url" value="{% url 'lot:add_devices' %}">add</button>
2024-07-09 15:31:24 +00:00
</form>
2024-07-05 13:32:07 +00:00
</div>
{% endblock %}