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.id$">$vocabulary.name$</a>
11
	},
12
	content = {
13
	<div><h4>Description: $vocabulary.description$</h4></div>
14
	
15
		<hr>
16
		<div class="table-responsive">
17
		<table class="table table-condensed">
18
    		<thead>
19
				<tr><th>Terms</th><th>Codes</th></tr>
20
			</thead>
21
			<tbody>
22
			$vocabulary.terms:{ term | 
23
				<tr><td>$term.englishName$</td><td>$term.code$</td></tr>
24
			}$
25
			</tbody>
26
		</table>
27
		</div>
28
 		<hr>
29
	})$
30

    
(1-1/4)