2 This file is part of Moodle - http://moodle.org/
4 Moodle is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 Moodle is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 @template core/paged_content
20 This template renders each of the content regions for a paginated
23 Example context (json):
26 "showitemsperpageselector": true,
28 { "value": 5, "active": false },
29 { "value": 10, "active": true },
30 { "value": 15, "active": false }
72 "content": "<p>Some page 1 content</p>"
76 "content": "<p>Some page 2 content</p>"
80 "content": "<p>Some page 3 content</p>"
84 "content": "<p>Some page 4 content</p>"
88 "content": "<p>Some page 5 content</p>"
92 "content": "<p>Some page 6 content</p>"
96 "content": "<p>Some page 7 content</p>"
101 <div id="paged-content-container-{{uniqid}}" data-region="paged-content-container">
102 {{^controlplacementbottom}}
105 {{> core/paged_content_paging_bar }}
108 {{> core/paged_content_paging_dropdown }}
111 {{/controlplacementbottom}}
112 {{> core/paged_content_pages }}
113 {{#controlplacementbottom}}
116 {{> core/paged_content_paging_bar }}
119 {{> core/paged_content_paging_dropdown }}
122 {{/controlplacementbottom}}
135 var container = $("#paged-content-container-{{uniqid}}");
136 PagedContent.init(container);