{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Package List' %}{% endblock %} {% block content %}
{% for result in page.object_list %}
    {% if result.model_name == "package" %}
  • {{ result.autoname }} {% if result.description %} {{ result.description|truncatechars:200 }} {% else %} {%trans 'Virtual package'%} {% endif %}
  • {%endif%}
{% empty %}

{% trans 'No results found' %}

{% endfor %}
{% endblock %}