{% trans 'Home' %}
{% if opts.app_config %}{# Django 1.7+ #}
› {{ opts.app_config.verbose_name }}
{% else %}
› {{ app_label|capfirst|escape }}
{% endif %}
{# not using module_name, because the 'opts' correclty point to the base model #}
› {% if has_change_permission %}{{ opts.verbose_name_plural|capfirst }}{% else %}{{ opts.verbose_name_plural|capfirst }}{% endif %}
{# Add tree levels to polymorphic breadcrumb #}
{% for parent in original|mptt_breadcrumb %}
› {{ parent }}
{% endfor %}
› {% if add %}{% trans 'Add' %} {{ opts.verbose_name }}{% else %}{{ original|truncatewords:"18" }}{% endif %}