{% extends "base.html" %} {% block titulo %} Cemantar {% endblock %} {% block seccion %}
Panel de Control
{% endblock %} {% block contenido %}

{% if perms.seajb.add_cemantar %} Nuevo {% endif %}
{% for cemantar in cemantar %} {% endfor %}
N° ORDEN CODE UNIDAD EQUIPO F-RECEPCIÓN F-ENTREGA CONDICIÓN SERIALES DESCRIPCIÓN ACCIONES
{{forloop.counter}} {{cemantar.code}} {{cemantar.unidad}} {{cemantar.equipo}} {{cemantar.fechaR|date:"d/m/Y"}} {{cemantar.fechaE|date:"d/m/Y"}} {{cemantar.reparado}} {{cemantar.seriales}} {{cemantar.descripcion}} {% if perms.seajb.change_cemantar %} | {% endif %} {% if perms.seajb.view_cemantar %} | {% endif %} {% if perms.seajb.delete_cemantar %} {% endif %}
{% endblock %} {% block js %} {% endblock %}