mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-25 15:19:04 +08:00
17 lines
405 B
HTML
Vendored
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 %}
|
|
|