Blame view

dictionary/templates/lexeme_history_item.html 338 Bytes
janek37 authored
1
2
{% load format_date dictionary_extras %}
{% with row|lexeme_table as table %}
janek37 authored
3
    <span>
janek37 authored
4
    {% if 'lexeme' in paginer_obj.params.columns %}
janek37 authored
5
        <strong>{{ table.lexeme }}</strong>
janek37 authored
6
    {% endif %}
janek37 authored
7
        {{ table.user.username }}
janek37 authored
8
9
    {{ table.date|format_date }}
  </span>
janek37 authored
10
    {% include "lexeme_history_table.html" %}
janek37 authored
11
{% endwith %}