{% extends "base.html" %} {% load static %} {% block content %}
{% if user.is_authenticated %} Almacen Entradas Salidas {% endif %}

Buscar

{% csrf_token %}

Almacen

{% if datos %} {% else %}
Agregar Referencia {% endif %}
{% for dato in datos %} {% endfor %}
__ NO. DE PEDIDO REFERENCIA EQUIPO DESCRIPCIÓN DE ETIQUETA DESCRIPCIÓN MARCA ESTATUS UBICACIÓN CANTIDAD FECHA DE ULTIMA DE ACTUALIZACION Column1
{% if dato.n_pedido is not None %} {{ dato.n_pedido }} {% endif %} {{ dato.referencia }} {{ dato.equipo }} {{ dato.descripcion_etiqueta }} {{ dato.descripcion_pieza|safe }} {{ dato.marca }} {{ dato.estatus }} {{ dato.ubicacion }} {{ dato.cantidad }} {{ dato.fecha_actualizacion }} {% if dato.Column1 is not None %} {{ dato.Column1 }} {% endif %} {% if user.is_authenticated %} Actualizar {% endif %}
{% endblock content %}