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/bodega_registro.html

61 lines
3.0 KiB

{% extends "Base.html" %}
{% block content %}
<main class="container my-5">
<div class="row justify-content-center">
<div class="col-md-10">
<div class="card shadow-lg border-0">
<div class="card-header text-center bg-secondary text-white">
<h3 class="mb-0">Tabla de Bodega</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">Código de la Bodega</th>
<th scope="col">Nombre de la Bodega</th>
<th scope="col">Estado</th>
<th scope="col">Dirección</th>
<th scope="col">Actualizar</th>
</tr>
</thead>
<tbody>
{% for bodega in persona %}
<tr class="text-center">
<td>{{ bodega.id }}</td>
<td>{{ bodega.codigo_bodega }}</td>
<td>{{ bodega.nombre_bodega }}</td>
<td>
{% if bodega.estado %}
Activo
{% else %}
Inactivo
{% endif %}
</td>
<td>{{ bodega.direccion_bodega }}</td>
<td>
<a class="btn btn-sm btn-dark text-white " href="{% url 'bodega_update' bodega.id %}">
<i class="bi bi-pencil">Editar</i>
</a>
</td>
</tr>
{% empty %}
<tr>
<td colspan="6" class="text-center text-muted">No hay bodegas registradas.</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<a href="{% url 'bodega_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 %}