weblate/html/js/similar.html
2012-03-28 14:19:05 +02:00

20 lines
647 B
HTML
Vendored

{% load i18n %}
{% load weblate %}
{% if similar %}
<table>
<thead>
<tr><th>{% trans "Project" %}</th><th>{% trans "Source" %}</th><th>{% trans "Translation" %}</th></tr>
</thead>
<tbody>
{% for item in similar %}
<tr>
<td>{{ item.translation.subproject }}</td>
<td class="translatetext"><a href="{{ item.get_absolute_url }}">{{ item.source|fmttranslation }}</a></td>
<td class="translatetext"><a href="{{ item.get_absolute_url }}">{{ item.target|fmttranslation:item.translation.language }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>{% trans "No similar strings found." %}</p>
{% endif %}