mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 16:43:19 +08:00
28 lines
696 B
HTML
Vendored
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 %}
|