Files
CenterPes/Base/templates/ProductList/List.html
2025-11-01 18:10:39 -03:00

65 lines
2.3 KiB
HTML

{% extends "BaseLogin.html" %}
{% block title %} List {% endblock %}
{% block content %}
<h1> Produtos </h1><br>
<div class="row mb-3">
<div class="col-md-6">
<form method="get" action="{% url 'ProductListListView' %}">
<div class="input-group">
<input type="text" class="form-control" name="name"
placeholder="Nome" value="{{ request.GET.name }}">
<button type="submit" class="btn btn-primary">
<i class="bi bi-search"></i>
</button>
</div>
</form>
</div>
{# {% if perms.brands.add_brands %}#}
<div class="col-md-6">
<a href="{% url 'ProductListCreateView' %}" class="btn btn-success float-end">
<i class="bi bi-plus"></i> Criar </a>
</div>
{# {% endif %}#}
</div>
<div class="table-responsive">
<table class="table table-striped table-bordered">
<thead class="thead-dark">
<tr align="center">
{# <th> ID </th>#}
<th> Nome </th>
<th> Valor </th>
<th > Descrição </th>
<th width="15%"> Ações </th>
</tr>
</thead>
<tbody>
{% for Serv in ProductList %}
<tr align="center">
{# <td> {{ Serv.id }} </td>#}
<td> {{ Serv.name }} </td>
<td> {{ Serv.value }} </td>
<td> {{ Serv.description }} </td>
<td>
<a href="{% url 'ProductListDetailView' Serv.id %}" class="btn btn-info btn-sm">
<i class="bi bi-eye"></i>
</a>
{# {% if perms.brands.change_brands %}#}
<a href="{% url 'ProductListUpdateView' Serv.id %}" class="btn btn-warning btn-sm">
<i class="bi bi-pencil"></i>
</a>
{# {% endif %}#}
{# {% if perms.brands.delete_brands %}#}
<a href="{% url 'ProductListDeleteView' Serv.id %}" class="btn btn-danger btn-sm">
<i class="bi bi-trash"></i>
</a>
{# {% endif %}#}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% include 'components/_pagination.html' %}
{% endblock %}