source: RedSur/app/assets/templates/profile_sidebar_tpl.jst.hbs

profile_fields
Last change on this file was a5c4926, checked in by aosorio <aosorio@…>, 8 years ago

Agregadas nuevas estructuras del profile para el registro de entes de apoyo

  • Property mode set to 100644
File size: 844 bytes
Line 
1
2<div id="profile_photo" class="profile_photo">
3  {{#linkToPerson this}}
4    {{{personImage this "large"}}}
5  {{/linkToPerson}}
6</div>
7
8{{#if show_profile_info}}
9  <ul id="profile_information">
10    {{#with profile}}
11      {{#if bio}}
12        <li>
13          <h4>{{t 'profile.bio'}}</h4>
14          <div class="{{txtDirClass bio}}">{{fmtText bio}}</div>
15        </li>
16      {{/if}}
17      {{#if location}}
18        <li>
19          <h4>{{t 'profile.location'}}</h4>
20          <div class="{{txtDirClass location}}">{{fmtText location}}</div>
21        </li>
22      {{/if}}
23      {{#if gender}}
24        <li>
25          <h4>{{t 'profile.gender'}}</h4>
26          {{gender}}
27        </li>
28      {{/if}}
29      {{#if birthday}}
30        <li>
31          <h4>{{t 'profile.born'}}</h4>
32          {{birthday}}
33        </li>
34      {{/if}}
35    {{/with}}
36  </ul>
37{{/if}}
Note: See TracBrowser for help on using the repository browser.