Project

General

Profile

1
<h3>{{conflicts.length}} warning(s)</h3>
2

    
3
<div class="card text-white mb-3" ng-repeat="w in conflicts" class="mb-2">
4
	<div class="card-header bg-primary">Group {{$index+1}}</div>
5
	<table class="table table-sm">
6
		<tr ng-repeat="o in w">
7
			<th style="width:40px" class="text-center">#{{$index+1}}</th>
8
			<td><a href="#!/metadata/0/{{o.id}}" title="{{o.id}}">{{o.name}}</a></td>
9
			<td style="width:200px"><img ng-src="resources/images/flags/{{o.country}}.gif" /> {{o.city}}, {{o.country}}</td>
10
			<td style="width:80px" class="text-right">{{o.type}}</td>
11
		</tr>
12
	</table>
13
	<div class="card-footer bg-secondary">
14
		<button type="button" class="btn btn-sm btn-primary">merge</button>
15
	</div>
16
</div>
17

    
(1-1/9)