Files
2025-11-01 18:10:39 -03:00

76 lines
2.8 KiB
HTML

{% extends "BaseLogin.html" %}
{% block title %} List {% endblock %}
{% block content %}
<h1> Produtos </h1><br>
<div class="row mb-3">
<div class="col-md-3">
<form method="get" action="{% url 'MovProductListView' %}" id="filterForm">
<div class="input-group">
<input type="date" class="date form-control" name="date"
placeholder="Dia" value="{{ request.GET.date }}"
onchange="document.getElementById('filterForm').submit();"
>
<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 'MovProductCreateCustom' %}" 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> date </th>
<th> product </th>
<th> pay_method </th>
<th> professional </th>
<th> quantity </th>
<th> gross_value </th>
{# <th> net_value </th>#}
<th> client </th>
<th width="15%"> Ações </th>
</tr>
</thead>
<tbody>
{% for Prod in Products %}
<tr align="center">
<td> {{ Prod.date|date:"d/m/Y" }} </td>
<td> {{ Prod.product.name }} </td>
<td> {{ Prod.pay_method }} </td>
<td> {{ Prod.professional }} </td>
<td> {{ Prod.quantity }} </td>
<td> {{ Prod.gross_value }} </td>
{# <td> {{ Prod.net_value }} </td>#}
<td> {{ Prod.client }} </td>
<td>
<a href="{% url 'MovProductDetailView' Prod.id %}" class="btn btn-info btn-sm">
<i class="bi bi-eye"></i>
</a>
{# {% if perms.brands.change_brands %}#}
<a href="{% url 'MovProductUpdateView' Prod.id %}" class="btn btn-warning btn-sm">
<i class="bi bi-pencil"></i>
</a>
{# {% endif %}#}
{# {% if perms.brands.delete_brands %}#}
<a href="{% url 'MovProductDeleteView' Prod.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 %}