{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "List Assigend Product" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Assigend Products" %} {% endblock %} {% block breadcumbfirst %} Manage Asigend Products {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Customer Name: {% if order.invoice.customer.first_name and order.invoice.customer.last_name %}{{order.invoice.customer.first_name }} {{ order.invoice.customer.last_name }}{% else %}{{order.invoice.customer.company_name }}{% endif %} Order ID: {{ order.id}}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if assigned_products %} {% for assigned_product in assigned_products %} {% endfor %}
Order Item Id Product Installation Date comment Actions
{{assigned_product.order_item.id}} {{ assigned_product.order_item.product.product_name }} {{assigned_product.installation_date|date:"d-m-Y"}} {%if assigned_product.comment%}{{assigned_product.comment}}{%else%}-{%endif%} Select
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% for assigned_product in assigned_products %}
{% csrf_token %}
{% endfor %} {% endblock script %}