{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "View Checklist" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Checklist View" %} {% endblock %} {% block breadcumbfirst %} Manage Checklist {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Checklist View

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if questions %} {% for question in questions %} {% endfor %}
Sr.No. Question Heading Sub Heading Product Created Updated Action
{{question.question}} {{question.heading.heading}} {%if question.subheading %}{{question.subheading}}{%else%}-{%endif%} {% for product in question.product.all %} {{ product.product_name }}({{ product.sku }}){% if not forloop.last %},
{% else %}.{% endif %} {% endfor %}
{{question.created_at|date:"d-m-Y, g:i A"}} {{question.updated_at|date:"d-m-Y, g:i A"}} Select
{% else %} No Record Found. {% endif %}
{% endblock %} {% block script %} {% endblock script%}