source: vlo/branches/vlo-3.3-oeaw/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/wicket/panels/record/HierarchyPanel.html @ 6755

Last change on this file since 6755 was 6755, checked in by davor.ostojic@oeaw.ac.at, 9 years ago

merged with trunk 3.4

File size: 1.8 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            <h2>Hierarchy</h2>
27            <p>
28                Use the tree below to explore the hierarchy this record is part
29                of. Click on the name of any of the records in this hierarchy to
30                navigate to that item.
31            </p>
32
33            <div wicket:id="parents">
34                <div class="tree-parent" wicket:id="parentsList">
35                    <a class="parent-up" wicket:id="up" title="Move up in hierarchy"><span>[up]</span></a>
36                    <wicket:container wicket:id="link">[link]</wicket:container>
37                </div>
38                <a wicket:id="showAll">Show all... (<span wicket:id="itemCount">999</span>)</a>
39            </div>
40            <div wicket:id="treeContainer">
41                <div id="tree" wicket:id="tree">[TREE]</div>
42            </div>
43        </wicket:panel>
44    </body>
45
46</html>
Note: See TracBrowser for help on using the repository browser.