diff --git a/InvenTree/company/templates/company/company_base.html b/InvenTree/company/templates/company/company_base.html index 1063f967f5..1080f01445 100644 --- a/InvenTree/company/templates/company/company_base.html +++ b/InvenTree/company/templates/company/company_base.html @@ -1,9 +1,10 @@ {% extends "base.html" %} {% load static %} +{% load i18n %} {% block page_title %} -InvenTree | Company - {{ company.name }} +InvenTree | {% trans "Company" %} - {{ company.name }} {% endblock %} {% block content %} @@ -44,27 +45,27 @@ InvenTree | Company - {{ company.name }}
| Website | {{ company.website }} | +{% trans "Website" %} | {{ company.website }} |
| Address | {{ company.address }} | +{% trans "Address" %} | {{ company.address }} |
| Phone | {{ company.phone }} | +{% trans "Phone" %} | {{ company.phone }} |
| {{ company.email }} | +{% trans "Email" %} | {{ company.email }} | |
| Contact | {{ company.contact }} | +{% trans "Contact" %} | {{ company.contact }} |
| Customer | +{% trans "Customer" %} | {% include 'yesnolabel.html' with value=company.is_customer %} |
| Supplier | +{% trans "Supplier" %} | {% include 'yesnolabel.html' with value=company.is_supplier %} |
| Reference | -{{ order.internal_ref }} | -
| Supplier | -- {% if order.supplier %} - {{ order.supplier.name }} - {% endif %} - | -
| Status | -{% include "supplier/order_status.html" with order=order %} | -
| Created Date | -{{ order.created_date }} | -
| Issued Date | -{{ order.issued_date }} | -
| Delivered Date | -{{ order.delivery_date }} | -
| Internal Part | +{% trans "Internal Part" %} | {% if part.part %} {{ part.part.full_name }} {% endif %} |
| Supplier | {{ part.supplier.name }} | |
| SKU | {{ part.SKU }} | |
| {% trans "Supplier" %} | {{ part.supplier.name }} | |
| {% trans "SKU" %} | {{ part.SKU }} | |
| URL | {{ part.URL }} | |
| {% trans "URL" %} | {{ part.URL }} | |
| Description | {{ part.description }} | |
| {% trans "Description" %} | {{ part.description }} | |
| Manufacturer | {{ part.manufacturer }} | |
| MPN | {{ part.MPN }} | |
| {% trans "Manufacturer" %} | {{ part.manufacturer }} | |
| {% trans "MPN" %} | {{ part.MPN }} | |
| Note | {{ part.note }} | |
| {% trans "Note" %} | {{ part.note }} |
| Order Multiple | {{ part.multiple }} | ||
| {% trans "Order Multiple" %} | {{ part.multiple }} | ||
| Base Price (Flat Fee) | {{ part.base_cost }} | ||
| {% trans "Base Price (Flat Fee)" %} | {{ part.base_cost }} | ||
| Price Breaks | +{% trans "Price Breaks" %} |
-
|
|
|---|---|---|---|
| Quantity | -Price | +{% trans "Quantity" %} | +{% trans "Price" %} |
| - No price breaks have been added for this part + {% trans "No price breaks have been added for this part" %} | |||