Merge pull request #1985 from alphagov/add-pagination-to-inbox-page

add pagination to inbox page
This commit is contained in:
Chris Waszczuk
2018-04-04 13:15:29 +01:00
committed by GitHub
7 changed files with 90 additions and 32 deletions

View File

@@ -1,4 +1,5 @@
{% from "components/table.html" import list_table, field, hidden_field_heading, right_aligned_field_heading, row_heading %}
{% from "components/previous-next-navigation.html" import previous_next_navigation %}
{% from "components/message-count-label.html" import message_count_label %}
<div class="ajax-block-container">
@@ -39,4 +40,7 @@
from {{ count_of_users }} user{{ '' if 1 == count_of_users else 's' }}
</p>
{% endif %}
{{ previous_next_navigation(prev_page, next_page) }}
</div>