Project

General

Profile

1
<div class="card mb-3" ng-show="show != 'hidden'">
2
	<div class="card-header py-1" ng-class="{
3
		'text-white bg-primary' : show == 'default', 
4
		'text-white bg-success' : show == 'success', 
5
		'text-white bg-info'    : show == 'info',
6
		'bg-secondary'          : show == 'secondary',
7
		}">{{orgTitle}}</div>
8
	<table class="table table-sm table-condensed">
9
		<tr class="d-flex">
10
			<th class="col-4 pl-3">Name</th>
11
			<td class="col-8">{{org.name}}</td>
12
		</tr>
13
		<tr class="d-flex">
14
			<th class="col-4 pl-3">Type</th>
15
			<td class="col-8">{{org.type}}</td>
16
		</tr>
17
		<tr class="d-flex">
18
			<th class="col-4 pl-3">Place</th>
19
			<td class="col-8">{{org.city}}, {{org.country}}</td>
20
		</tr>
21
		<tr class="d-flex">
22
			<th class="col-4 pl-3">Acronyms</th>
23
			<td class="col-8">{{org.acronyms.join(', ')}}</td>
24
		</tr>
25
		<tr class="d-flex">
26
			<th class="col-4 pl-3">Also known as</th>
27
			<td class="col-8"><span ng-repeat="n in org.otherNames">{{n.name}}<br /></span></td>
28
		</tr>
29
		<tr class="d-flex">
30
			<th class="col-4 pl-3">Urls</th>
31
			<td class="col-8"><span ng-repeat="u in org.urls"><a href="{{u}}" target="_blank">{{u}}</a><br /></span></td>
32
		</tr>
33
	</table>
34
</div>
(2-2/3)