seitime-frappe/frappe/templates/includes/breadcrumbs.html
robulik d0a35cd7da [Minor] fix of translatable strings ("No Tags", "Profile") (#2892)
* Slovak translations

* New strings pulled

* Slovak translations for Desktop terms

* Slovak translations'

* Slovak translations

* Slovak translations

* Slovak translations

* Slovak translations

* Quick entry window now with translatable footer notes

* Slovak translation waits for bulk pull request

* Slovak translations

* Slovak translations

* Slovak translations

* Slovak translations

* Button Make a new {0} in list view - which is already translated string

* Translatable strings 'No Tags' and 'Profile'

* Minor fix of translatable strings (No Tags, Profile)

* [fix] translations for strings in templates
2017-03-23 14:52:18 +05:30

15 lines
478 B
HTML

{% if parents and parents|length > 0 and (parents[-1].route) %}
<ul class="breadcrumb">
<li>
<span class="fa fa-angle-left"></span>
<a href="{{ url_prefix }}{{ parents[-1].route | abs_url }}">
{{ _(parents[-1].title) or _(parents[-1].label) or "" }}</a>
</li>
{#
<!-- {% for parent in parents %}
<li><a href="{{ parent.name }}">{{ parent.page_title or parent.title or "" }}</a></li>
{% endfor %}
<li class="active">{{ title or "" }}</li> -->
#}
</ul>
{% endif %}