{% extends "base.html" %} {% block title %}Words to Readlang - Search Words{% endblock %} {% block content %}

Search Words

{% if available_pairs|length > 1 %}
{% endif %}
{% if results is none %}

Search across all your uploads. If the same word appears in multiple uploads with different translations, you'll see a warning.

{% elif results|length == 0 %}

No words matching {{ query }} found.

{% else %}

{{ results|length }} word group{{ 's' if results|length != 1 else '' }} found for {{ query }}.

{% for group in results %}

{{ group.word }}

{% if group.translations_differ %} Translations differ {% endif %}
{% for entry in group.entries %} {% endfor %}
Upload Translation Status Example
{{ entry.upload.filename }} {{ entry.current_translation }} {% include 'components/validation_badge.html' %} {{ entry.current_example[:80] ~ '…' if entry.current_example and entry.current_example|length > 80 else (entry.current_example or '—') }}
{% endfor %} {% endif %}
{% endblock %}