{% extends "billy/web/public/base.html" %} {% load url from future %} {% load i18n %} {% block content %}

{{ metadata.name }} Bills

{% trans "Filter Bills" %}

  • {{ form.as_ul }}
{% 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 %} {% endif %} {% for obj in object_list %} {% include rowtemplate_name %} {% endfor %} {% if use_table %}
{% trans "Title" %} {% trans "Introduced" %} {% trans "Recent Action" %}
{% endif %} {% include "billy/web/public/_pagination.html" %} {% endif %}
{% endblock %}