_profile.html
1 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
<div id="profile" class="modal">
<ion-content>
<h1 class="title">
<span>
<img src="img/user.png" alt="" width="120" />
<span>
{{profile.name}}
<h2 ng-click="editProfile()">editar perfil</h2>
</span>
</span>
<a class="back icon-left ion-reply" ng-click="closeProfile()">Voltar</a>
</h1>
<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>É membro de conselho municipal ou estadual da juventude?</h2>
<p>{{profile.membro_conselho | membroConselhoFilter}}</p>
<h2><span ng-show="profile.transgenero == 'false'">Não</span> Sou Transgênero</h2>
</ion-content>
</div>