{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% for search in queryset %} {% if not forloop.first and not forloop.last %}

{{ search.string }}

{% endif %}

{% blocktrans %}Results{% endblocktrans %}

{% comment %}For the favored results, add a class?{% endcomment %}
Weight
URL
{% for result in search.get_weighted_results %}
{{ result.weight }}
{{ result.url }}
{% endfor %}
{% endfor %}
{% endblock %}