{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Upload Cars" %} {%endblock%} {% block content %}
| {% trans "Name" %} | {% trans "Quantity" %} | {% trans "Unit Cost" %} | {% trans "Is Data Uploaded ?" %} |
|---|---|---|---|
| {{ i.item.item_model }} | {{ i.item.po_quantity }} | {{ i.item.po_unit_cost }} | {% if i.status == "uploaded" %} {% else %} {% trans "Upload Data" %} {% endif %} |