Project

General

Profile

1
$master( title={$vocabulary.name$}, 
2
cssLinks = {
3
	<!-- Bootstrap core CSS -->
4
    <link href="../resources/css/bootstrap.min.css" rel="stylesheet">
5
    <!-- Custom styles for this template -->
6
    <link href="../resources/css/jumbotron.css" rel="stylesheet">
7
    },
8
    bootstrapJS={<script src="../resources/js/bootstrap.min.js"></script>},
9
navbars={
10
	<a class="navbar-brand" href="$baseURL$/$vocabulary.code$">$vocabulary.name$</a>
11
	},
12
	content = {
13
	<div><h4>Description: $vocabulary.description$</h4></div>
14
	<div><h4>Code: $vocabulary.code$</h4></div>
15
	
16
		<hr>
17
		<div class="table-responsive">
18
		<table class="table table-condensed">
19
    		<thead>
20
				<tr><th>Terms</th><th>Codes</th></tr>
21
			</thead>
22
			<tbody>
23
			$vocabulary.terms:{ term | 
24
				<tr><td>$term.englishName$</td><td>$term.code$</td></tr>
25
			}$
26
			</tbody>
27
		</table>
28
		</div>
29
 		<hr>
30
	})$
31

    
(1-1/4)