weblate/html/dictionaries.html
2012-04-02 11:26:57 +02:00

28 lines
696 B
HTML
Vendored

{% extends "base.html" %}
{% load i18n %}
{% load weblate %}
{% load url from future %}
{% block breadcums %}
<li><a href="{{ project.get_absolute_url }}">{{ project }}</a></li>
<li><a href="{% url 'trans.views.show_dictionaries' project=project.slug %}">{% trans "dictionaries" %}</a></li>
{% endblock %}
{% block content %}
<table class="sort simple">
<thead>
<tr>
<th>{% trans "Language" %}</th>
<th>{% trans "Words" %}</th>
</tr>
<tbody>
{% for dict in dicts %}
<tr>
<th><a href="{% url 'trans.views.show_dictionary' project=project.slug lang=dict.code %}">{{ dict }}</a></th>
<td class="number">{% dictionary_count dict project %}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}