{% extends "searchResults.html" %} {% block searchResults %} {% for langList in resultsByLang %}

{{langList.lang.localized_name}} valoda

{% for conceptData in langList.results %} {% with conceptData.concept as concept %}
{% for binding in conceptData.sourceBindings %} {% with binding.word as word %} {% endwith %} {% endfor %}
{% if user.is_staff %} {% ifchanged conceptData %} {% endifchanged %} {% else %} - {% endif %} {{ word.word }}
{% if conceptData.description.description %} Apraksts: {{conceptData.description.description|linebreaksbr}}
{% endif %} {% if conceptData.tags %} {% for tag in conceptData.tags %}{% if forloop.first %}{% else %}, {% endif %} {{ tag.name }} {% endfor %}
{% endif %}
{% endwith %} {% endfor %}
{% endfor %} {% endblock %}