Initial content
This commit is contained in:
parent
15e5ea6a2f
commit
86fe317055
92 changed files with 13147 additions and 0 deletions
29
vivocore/conf/velocity/pagination_top.vm
Normal file
29
vivocore/conf/velocity/pagination_top.vm
Normal file
|
@ -0,0 +1,29 @@
|
|||
#**
|
||||
* Paging and Statistics at top of results
|
||||
*#
|
||||
|
||||
## Usually rendered in pagination div tag
|
||||
|
||||
## Grouped Results / Not Paginated
|
||||
#if($response.response.get('grouped'))
|
||||
|
||||
<span>
|
||||
<span class="results-found">
|
||||
$response.response.get('grouped').size() group(s)
|
||||
</span>
|
||||
found in ${response.responseHeader.QTime} ms
|
||||
</span>
|
||||
|
||||
## Regular Results / Use Paging Links if needed
|
||||
#else
|
||||
|
||||
<span>
|
||||
<span class="results-found">$page.results_found</span>
|
||||
results found in
|
||||
${response.responseHeader.QTime} ms
|
||||
</span>
|
||||
|
||||
Page <span class="page-num">$page.current_page_number</span>
|
||||
of <span class="page-count">$page.page_count</span>
|
||||
|
||||
#end ## end else non-grouped results, normal pagination
|
Loading…
Add table
Add a link
Reference in a new issue