You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Inventario_tienda/Inventario/templates/articulo_registro.html

60 lines
3.2 KiB

{% extends "Base.html" %}
{% block content %}
<main class="container my-5">
<div class="row">
<div class="col-md-10 offset-md-1">
<div class="card shadow-lg border-0 text-white">
<div class="card-header text-center bg-secondary text-white">
<h3 class="mb-0">Gestión de Artículos</h3>
</div>
<div class="card-body p-4">
<div class="table-responsive">
<table class="table table-bordered table-hover align-middle text-white">
<thead class="bg-dark text-secondary text-center">
<tr>
<th scope="col">#</th>
<th scope="col">Nombre</th>
<th scope="col">Medida</th>
<th scope="col">Descripción</th>
<th scope="col">Tipo</th>
<th scope="col">Proveedor</th>
<th scope="col">Precio Compra</th>
<th scope="col">Precio Venta</th>
<th scope="col">Acción</th>
</tr>
</thead>
<tbody>
{% for articulo in persona %}
<tr class="text-center">
<td>{{ articulo.id }}</td>
<td>{{ articulo.nombre_articulo }}</td>
<td>{{ articulo.medida }}</td>
<td>{{ articulo.descripcion }}</td>
<td>{{ articulo.tipo_articulo.tipo_articulo }}</td>
<td>{{ articulo.proveedor.nombre_proveedor }}</td>
<td>${{ articulo.precio_compra|floatformat:2 }}</td>
<td>${{ articulo.precio_venta|floatformat:2 }}</td>
<td>
<a class="btn btn-sm btn-dark text-white" href="{% url 'articulo_update' articulo.id %}">
<i class="bi bi-pencil"></i> Editar
</a>
</td>
</tr>
{% empty %}
<tr>
<td colspan="9" class="text-center text-muted">No hay artículos registrados.</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<a href="{% url 'articulo_registro' %}" class="btn btn-success btn-lg rounded-circle position-fixed bottom-0 end-0 m-3 shadow-lg">
<i class="fas fa-plus"></i>
</a>
</main>
{% endblock %}