devicehub-django/dashboard/templates/unassigned_devices.html

59 lines
1.6 KiB
HTML
Raw 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">
<a href="{# url 'idhub:admin_people_edit' object.id #}" type="button" class="btn btn-green-admin">
<i class="bi bi-folder2"></i>
{% trans 'Lots' %}
</a>
<a href="{# url 'idhub:admin_people_edit' object.id #}" type="button" class="btn btn-green-admin">
<i class="bi bi-plus"></i>
{% trans 'Actions' %}
</a>
<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>
<a href="#" type="button" class="btn btn-green-admin">
<i class="bi bi-tag"></i>
{% trans 'Labels' %}
</a>
</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 %}