{% 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 %}