profile-data.html
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!-- Basic data -->
<div class="main-box clearfix">
<header class="main-box-header clearfix">
<h2>{{"profile.basic_info" | translate}}</h2>
</header>
<div class="main-box-body clearfix">
<div class="table-responsive">
<table class="table table-striped table-hover">
<tbody>
<tr>
<td>
{{"profile.type" | translate}}
</td>
<td>
<span class="label" ng-class="{'label-danger': ctrl.profile.type == 'Community', 'label-info': ctrl.profile.type == 'Person'}">{{ctrl.profile | translateProfile}}</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Custom Fields -->
<div class="main-box clearfix profile-custom-fields" ng-if="!equals({},ctrl.profile.additional_data)">
<header class="main-box-header clearfix">
<h2>{{"profile.others_info" | translate}}</h2>
</header>
<div class="main-box-body clearfix">
<div class="table-responsive">
<table class="table table-striped table-hover">
<tbody>
<tr ng-repeat="(field, value) in ctrl.profile.additional_data">
<td>
{{ field }}
</td>
<td>
{{ value }}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>