{% extends "base.html" %} {% load datagrid djblets_utils i18n %} {% block title %}{% trans "Search Review Requests" %}{% endblock %} {% block content %} {% if hits_returned == 0 %} {% trans "No review requests matching your query" %}: {{query}} {% else %} {% blocktrans %} {{hits_returned}} results for {{query}} {% endblocktrans %} {% if total_hits > hits_returned %} ({% trans "Additional results exist but are not returned. If you do not see the review request you're looking for, try making your query more specific." %}) {% endif %} {% endif %}

{% for result in page.object_list %}

{{result.object.summary}}

{{result.object.description|truncatewords:30}}
{% blocktrans with result.object.time_added as added_timestamp and result.object.time_added|date:"c" as added_timestamp_raw and result.object.submitter|user_displayname as added_by %} by {{added_by}}{% endblocktrans %}
{% endfor %}
{% if page.has_previous %} « {% trans "Previous" %} {% endif %} {% if page.has_previous and page.has_next %} | {% endif %} {% if page.has_next %} {% trans "Next" %} » {% endif %}
{% endblock %}