{% extends "base.html" %} {% load compress %} {% load i18n %} {% load crispy_forms_tags %} {% load translations %} {% load icons %} {% load static %} {% load permissions %} {% block extra_script %} {% compress js %} {% endcompress %} {% endblock %} {% block breadcrumbs %}
  • {{ project }}
  • {% if object.component.slug != "-" %} {% include "snippets/component-breadcrumb.html" with object=object.component %} {% endif %} {% include "snippets/translation-breadcrumb.html" %}
  • {% trans "Browse" %}
  • {% endblock %} {% block content %} {% if object.component.slug == "-" %} {% for component in project.component_set.all %} {% include "snippets/component/state.html" with object=component %} {% endfor %} {% else %} {% include "snippets/component/state.html" with object=object.component %} {% endif %} {% perm 'unit.add' object as user_can_add_unit %} {% if user_can_add_unit %} {% icon "plus-circle.svg" %} {{ object.component.get_add_label }} {% endif %}
    {% crispy search_form %}
    {% if not units %} {% trans "No strings found!" %} {% else %} {% include "snippets/embed-units.html" with translation=object include_search=True component=object.component %} {% endif %} {% endblock %}