{% extends 'base.html' %} {% import 'macros.html' as macros with context %} {% block bodyclass %}word_detail{% endblock %} {% block extra_js %} {{ entry_template_header_includes|safe }} {% endblock %} {# Construct some useful share information for the meta title #} {% macro definition_string(r) -%} {%- for lexeme in r -%} {%- set context = lexeme.context -%} {{ lexeme.source_formatted|safe }} — {% for tx in lexeme.right -%} {%- if tx.target_formatted_unlinked -%} {%- for t in tx.target_formatted_unlinked -%}{{ t }}{% if not loop.last %}, {% endif %}{% endfor -%} {%- else -%}{%- if tx.re %} ({% for annotation in tx.re %}{{ annotation }}{% endfor %}){% endif -%}{% endif -%} {%- endfor -%} {%- if not loop.last %}; {% endif %} {%- endfor -%} {%- endmacro -%} {% block og_meta_description -%} {%- endblock %} {% block og_url_path %}/detail/{{ _from }}/{{ _to }}/{{ user_input }}.html{% endblock %} {% block float_right %} {%- if result.analyses %}
{{ result.input }} {% trans %}is a possible form of ... {% endtrans %}
{% for grouper, forms in result.analyses|groupby(0) %}
{{ grouper }}
    {% for lemma, pos, tag in forms %}
  • {{ tag|tagfilter(_from, _to) }}
  • {% endfor %}
{% endfor %}
{%- endif -%} {% endblock %} {% block content %}
{% if has_analyses %}

{{ user_input }}{% trans user_input=user_input %} is a possible form of ... {% endtrans %}

{% endif %}

{% if current_pair_settings.asynchronous_paradigms %}
{% else %}
{% endif %} {% for tpl in entry_templates %} {{ tpl|safe }} {% endfor %}
{% if analyses_without_entry %} {{ analyses_without_entry|safe }} {% endif %}
{% if current_pair_settings.asynchronous_paradigms %}
{% else %}
{% endif %} {% if more_detail_link %}

{% trans %}More information about this word{% endtrans %}

{% endif %} {%- if analyses %}

{{ user_input }}{% trans user_input=user_input %} is a possible form of ... {% endtrans %}

{{ all_analysis_template|safe }}
{%- endif -%} {% endblock %}