seitime-frappe/frappe/desk/page/user_profile/user_profile_sidebar.html
Suraj Shetty b4e616c0de fix: Rename "Energy Point Log" with "User"
Because it's user's leaderboard
2019-09-30 13:21:03 +05:30

23 lines
No EOL
980 B
HTML

<div class="user-profile-sidebar">
<div class="user-image-container hidden-xs hidden-sm">
{% if user_image %}
{{user_image}}
{% endif %}
</div>
<div class="profile-details">
{% if user_bio %}
<p class="user-bio">{{user_bio}}</p>
{% endif %}
{% if user_location %}
<p class="user-location text-muted"><span class="interest-icon"><i class="fa fa-map-marker"></i></span>{{user_location}}</p>
{% endif %}
{% if user_interest %}
<p class="user-interests text-muted"><span class="interest-icon"><i class="fa fa-puzzle-piece"></i></span>{{user_interest}}</p>
{% endif %}
</div>
<div class="profile-links">
<p><a class="edit-profile-link">{%=__("Edit Profile") %}</a></p>
<p><a class="user-settings-link">{%=__("User Settings") %}</a></p>
<p><a class="leaderboard-link" href="#leaderboard/User">{%=__("Leaderboard") %}</a></p>
</div>
</div>