{% load i18n %} {% load highlight %}
  • {% if result.tag %} {{ result.tag }} {% endif %} {% if result.title %} {% if query %} {% highlight result.title with query max_length "1000" %} {% else %} {{ result.title }} {% endif %} {% endif %} {% if result.description %} - {% if query %} {% highlight result.description with query max_length "150" %} {% else %} {% if result.latest_description %} {{ result.latest_description|escape|truncatechars:150 }} {% elif result.description %} {{ result.description|escape|truncatechars:150 }} {% endif %} {% endif %} {% endif %} {% if result.fullname or result.modified %}
    {% if result.fullname %} {% trans "by" %} {% if result.fullname and result.author_url %} {% if query %} {% highlight result.fullname with query %} {% else %} {{ result.fullname }} {% endif %} {% else %} {{ result.fullname }} {% endif %} {% endif %} {% if result.modified %} {{ result.modified|timesince }} {% trans "ago" %} {% endif %}
    {% endif %}