{% extends "xrm/base.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "Ticket Index" %} {% endblock %} {% block inlscript %} {% endblock %} {% block content %}
| {% trans "Ticket Id" %} | {% trans "Ticket Code" %} | {% trans "IC Code" %} | {% trans "Mount Code" %} | {% trans "Version Code" %} | {% trans "Project Barcode" %} | {% trans "Users" %} | {% trans "Ticket Info" %} | {% trans "Creator" %} | {% trans "IP" %} | {% trans "Time" %} | {% trans "Downloads" %} | {% trans "Action" %} |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ order.id }} | {{ order.barcode }} | {{ order.ic }} | {{ order.storage }} | {{ order.version }} | {{ order.project.barcode }} | {% for user in order.user.all %} [{{ user }}] {% endfor %} | {{ order.info }} | {{ order.created_by }} | {{ order.ip }} | {{ order.created_on }} | {{ order.downloads }} | {% if user.is_staff %} {% trans "Delete" %} {% endif %} {% if user.is_superuser %} , {% trans "Update" %} {% endif %} |