Project

General

Profile

1
$master( title={$vocabulary.name$}, 
2
navbars={
3
	<a class="navbar-brand" href="$baseURL$/$vocabulary.code$">$vocabulary.name$</a>
4
	},
5
	content = {
6
	<div><h4>Description: $vocabulary.description$</h4></div>
7
	<div><h4>Code: $vocabulary.code$</h4></div>
8
		<hr>
9
		<div class="table-responsive">
10
		<table class="table table-condensed">
11
    		<thead>
12
				<tr><th>Terms</th><th>Codes</th></tr>
13
			</thead>
14
			<tbody>
15
			$vocabulary.terms:{ term | 
16
				<tr>
17
				    <td>$term.englishName$</td><td><a class="btn btn-link" href="$baseURL$/$vocabulary.code$/$term.code$" role="button" data-toggle="tooltip" data-placement="top" title="Click to view the synonyms">$term.code$</a></td>
18
				</tr>
19
			}$
20
			</tbody>
21
		</table>
22
		</div>
23
 		<hr>
24
        <div>Click <a href="$baseURL$/$vocabulary.code$.json">here</a> to view the machine readable version of this page.</div>
25
	})$
26

    
(2-2/5)