{% extends 'base.html' %} {% block header %} {% block title %}Stock Transfer Report Per Brand{% endblock %} {% endblock %} {% block custom_head %} {% endblock %} {% block custom_scripts %} {% endblock %} {% block content %}
Input
{% if result %}
Result
{% for inv in result %} {% for brand in result[inv] %} {% endfor %} {% endfor %}
Validation Date Partner Name Partner ID Number Brand Cost
{{ result[inv][brand]['Date'] }} {{ result[inv][brand]['Partner Name'] }} {{ result[inv][brand]['Partner ID'] }} {{ result[inv][brand]['Number'] }} {{ result[inv][brand]['Brand'] }} {{ result[inv][brand]['Cost'] }}
{% endif %} {% endblock %}