{% extends 'base.html' %} {% load static %} {% load humanize %} {% load dict_extras %} {% block content %}

Catelog Translation Matrix

{% include 'partials/_messages.html' %}
{% for lang in languages %} {% endfor %} {% for p in products %} {% for lang in languages %} {% with row=translation_map|get_item:p.id %} {% if row %} {% with link=row|get_item:lang.id %} {% endwith %} {% else %} {% endif %} {% endwith %} {% endfor %} {% empty %} {% endfor %}
Product{{ lang.name }}
{{ p.name }}
{{ p.code }}
{% if link %}
{{ link }}
{% else %} {% endif %}
No products found.
{% endblock %}