{% extends "layout.html" %} {% block head %} {{ super() }} {% endblock %} {% block subtitle %}{{word}} - {{config.APP_NAME}}{% endblock %} {% block maincontent %}
{{ form.word(placeholder='word', class='form-control', autocomplete='off') }}
{{ form.csrf_token }}

从以下词典查找:
    {% for uuid, item in contents.items() %}
  • {% endfor %}
历史:
    {%for row in history%}
  • {{row.word}} {{row.count}}
  • {%endfor%}
{% for uuid, item in contents.items() if item.content %}
{%if item.content%}{{word_meta|safe}}{%endif%}
{{item.content|safe}}
{% endfor %}
{% endblock %} {% block script %} {{super()}} {% endblock %}