source: vlo/branches/vlo-3.0/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/wicket/panels/search/SearchResultsPanel.html @ 4883

Last change on this file since 4883 was 4883, checked in by Twan Goosen, 10 years ago

fixed potential issue with markup id in search item details

File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3<!--
4Copyright (C) 2014 CLARIN
5
6This program is free software: you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program.  If not, see <http://www.gnu.org/licenses/>.
18-->
19<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org" xml:lang="en">
20    <head>
21        <title>facet panel</title>
22        <meta charset="UTF-8">
23    </head>
24    <body>
25        <wicket:panel>
26            <h1 wicket:id="title">Search results</h1>
27           
28            <div id="searchresultsheader">
29                <span wicket:id="resultCount" id="searchresultcount">604056 results</span>
30                <span wicket:id="resultPageIndicator" id="searchresultpagecount">Showing 1 to 25</span>
31                <div class="searchresultpagination">
32                    <div wicket:id="pagingTop">[PAGING]</div>
33                </div>
34            </div> 
35
36            <ul id="searchresultitems">
37                <li wicket:id="resultItem" class="searchresultitem">
38                    <div wicket:id="resultItemDetails">details</div>
39                </li>
40            </ul>
41           
42            <div id="searchresultpagination">
43                <div wicket:id="pagingBottom">[PAGING]</div>
44
45                <form wicket:id="resultPageSizeForm" id="resultpagesizeform">
46                    <label for="resultpagesize">Results per page:</label>
47                    <select wicket:id="resultPageSize" id="resultpagesize">
48                        <option>5</option>
49                        <option>10</option>
50                        <option selected="selected">25</option>
51                        <option>50</option>
52                        <option>100</option>
53                    </select>
54                </form>
55            </div>
56        </wicket:panel>
57    </body>
58</html>
Note: See TracBrowser for help on using the repository browser.