_profile.html
1.15 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
<div id="profile" class="modal">
<ion-content>
<h1 class="title">
{{profile.name}}
<a class="back icon-left ion-reply" ng-click="closeProfile()">Voltar</a>
</h1>
<h2> Nível {{profile.level}} Você possui {{profile.points}} pontos </h2>
<div>{{profile.gamification_plugin_level_percent}} %</div>
<h1> Suas Medalhas</h1>
<div class="list">
<a ng-repeat="badge in profile.badges" href="#/" class="item item-thumbnail-left">
<img ng-src="{{ badge.name }}">
<h2>{{ badge.level }}</h2>
<h4>{{ badge.title }}</h4>
<h4>{{ badge.description }}</h4>
</a>
</div>
<h2>Nome</h2>
<p>{{profile.name}}</p>
<h2>Login</h2>
<p>{{profile.user.login}}</p>
<h2>Região</h2>
<p>{{profile.region.full_name}}</p>
<h2>Orientação Sexual</h2>
<p>{{profile.orientacao_sexual | orientacaoSexualFilter }}</p>
<h2>Identidade de Gênero</h2>
<p>{{profile.identidade_genero | generoFilter }}</p>
<h2>Etnia</h2>
<p>{{profile.etnia | etniaFilter}}</p>
<h2><span ng-show="profile.transgenero == 'false'">Não</span> Sou Transgênero</h2>
</ion-content>
</div>