{% extends "base.html" %} {% load i18n pagination_tags content_tags list_utils rating_tags %} {% block pagetitle %}{% trans "Internal links" %}{% endblock %} {% block extrahead %} {{ search_form.render_media|safe }} {% endblock %} {% block page %}
{{ search_form }}

{% autopaginate object_list 10 %} {% paginate %} {% for item in object_list %} {% with item.get_absolute_url as item_url %}

{{ item }}

    {% if item.plain_description %}
  • {% trans "Description" %}: {{ item.plain_description|truncatewords:20 }}

  • {% endif %} {% if with_rating %}
  • {% ratingform item readonly %}
  • {% endif %}
{% endwith %} {% endfor %} {% paginate %}
{% endblock %}