diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-18 16:22:08 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-18 16:22:08 +0100 |
commit | 3a2b49ebcb8c65d73108930f421142f2536cb893 (patch) | |
tree | 0112c0481384bd8fdc4e3b74efc1c6fd991e40b6 /perllib/FixMyStreet/App/Controller | |
parent | fc507074651b9f70dab1eeed4772f678a21fe272 (diff) |
Update pagination when status/categories changed.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Reports.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Reports.pm b/perllib/FixMyStreet/App/Controller/Reports.pm index 79e11af9c..f05096525 100644 --- a/perllib/FixMyStreet/App/Controller/Reports.pm +++ b/perllib/FixMyStreet/App/Controller/Reports.pm @@ -521,7 +521,15 @@ sub ajax : Private { my $list_html = $c->render_fragment($template); - my $json = { pins => \@pins }; + my $pagination = $c->render_fragment('pagination.html', { + pager => $c->stash->{problems_pager} || $c->stash->{pager}, + param => 'p', + }); + + my $json = { + pins => \@pins, + pagination => $pagination, + }; $json->{reports_list} = $list_html if $list_html; my $body = encode_json($json); $c->res->body($body); |