60 lines
1.7 KiB
HTML

{% extends 'base.html' %}
{% block titulo %}Articulo Recibidos{% endblock %}
{% block seccion %}
{% block titulodeseccion %} Historial de Articulos Recibidos {% endblock%}
{% block etiqueta1 %}Inicio{% endblock %}
{% block etiqueta2 %} Información{% endblock %}
{% endblock %}
{% block contenido %}
<div class="row">
<div class="col-lg-12">
<div class="card card-dark card-outline">
<div class="card-header">
<div class="d-flex justify-content-between">
</div>
</div>
<div class="card-body">
<div class="table-responsive">
<table id="example1" class="table align-items-center table-flush">
<thead class="thead-light">
<tr>
<th scope="col"></th>
<th scope="col">Descripcion</th>
<th scope="col">Marca</th>
<th scope="col">Modelo</th>
<th scope="col">Serial</th>
<th scope="col">Cant</th>
<th scope="col">Comprobante</th>
<th scope="col">Asignado</th>
</tr>
</thead>
<tbody>
{% for objetos in articulo %}
<tr class="">
<td>{{forloop.counter}}</td>
<td>{{objetos.description}}</td>
<td>{{objetos.marca}}</td>
<td>{{objetos.modelo}}</td>
<td>{{objetos.serial}}</td>
<td>{{objetos.cantidad}}</td>
<td>{{objetos.comprobante.concepto_movimiento}}</td>
<td>{{objetos.fecha_salida|date:'d-m-Y'}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{% endblock %}