{% if not object_list.count %}
{% trans "No bills found matching those criteria. Try widening your criteria." %}
{% else %}
{% include "billy/web/public/_pagination.html" %}
{% if use_table %}
{% trans "Title" %}
{% trans "Introduced" %}
{% trans "Recent Action" %}
{% endif %}
{% for obj in object_list %}
{% include rowtemplate_name %}
{% endfor %}
{% if use_table %}
{% endif %}
{% include "billy/web/public/_pagination.html" %}
{% endif %}