weblate/html/language.html
2012-03-30 15:17:11 +02:00

17 lines
405 B
HTML
Vendored

{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
{% block breadcums %}
<li><a href="{% url 'trans.views.show_languages' %}">{% trans "languages" %}</a></li>
<li><a href="{{ object.get_absolute_url }}">{{ object }}</a></li>
{% endblock %}
{% block content %}
{% with object.translation_set.all as translations %}
{% include "list-translations.html" %}
{% endwith %}
{% endblock %}