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
	
9
		<hr>
10
		<div class="table-responsive">
11
		<table class="table table-condensed">
12
    		<thead>
13
				<tr><th>Terms</th><th>Codes</th></tr>
14
			</thead>
15
			<tbody>
16
			$vocabulary.terms:{ term | 
17
				<tr>
18
				    <td>$term.englishName$</td><td><a class="btn btn-link" href="$baseURL$/$vocabulary.code$/$term.code$" role="button">$term.code$</a></td>
19
				</tr>
20
			}$
21
			</tbody>
22
		</table>
23
		</div>
24
 		<hr>
25
	})$
26

    
(2-2/5)