-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowse.html
42 lines (42 loc) · 1.89 KB
/
browse.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:i18n="http://exist-db.org/xquery/i18n" data-template="templates:surround" data-template-with="templates/page.html" data-template-at="content">
<div class="page-header">
<h1>List of person records</h1>
</div>
<br/>
<div class="row">
<table id="servertable" class="display table table-striped" cellspacing="0" width="100%">
<thead>
<tr>
<th>
<i18n:text key="name">Name</i18n:text>
</th>
<th>
<i18n:text key="volume">Vol.</i18n:text>
</th>
<th>
<i18n:text key="place">Place</i18n:text>
</th>
<th>
<i18n:text key="date">Date</i18n:text>
</th>
<th>
<i18n:text key="reference">Reference</i18n:text>
</th>
<th>
<i18n:text key="relations">Relationships</i18n:text>
</th>
<th>
<i18n:text key="update">Update</i18n:text>
</th>
<th>
<i18n:text key="copy">Id</i18n:text>
</th>
</tr>
</thead>
</table>
</div>
<script>
var clipboardDemos=new Clipboard('.clipboard');clipboardDemos.on('success',function(e){e.clearSelection();console.info('Action:',e.action);console.info('Text:',e.text);console.info('Trigger:',e.trigger);showTooltip(e.trigger,'Copied!');});clipboardDemos.on('error',function(e){console.error('Action:',e.action);console.error('Trigger:',e.trigger);showTooltip(e.trigger,fallbackMessage(e.action));});
</script>
</div>