{% extends "webcatalog/base.html" %} {% load i18n %} {% block title %}{% trans "Search results" %}{% endblock %} {% block header %}{% trans "Search results" %}{% endblock %} {% block content %}
Search within
{% include "webcatalog/breadcrumbs_snippet.html" %} {% if query %}

{% blocktrans %}Searched for "{{query}}"{% endblocktrans %}

{% if page.object_list %} {% include "webcatalog/batch_navigation.html" %} {% with applications=page.object_list %} {% include "webcatalog/application_list_snippet.html" %} {% endwith %} {% include "webcatalog/batch_navigation.html" %} {% else %}

{% trans "No applications found." %}

{% endif %} {% else %}

{% trans "You didn't search for anything!" %}

{% endif %}
{% endblock %}