Files
dss/templates/views/SidebarViewUser.html
2014-02-08 23:43:30 +00:00

35 lines
927 B
HTML
Executable File

{% verbatim %}
<div>
<ul class="inline">
<li><h5>{{ profile.display_name }}</h5></li>
{% endverbatim %}
{% if user.is_authenticated %}
<li>
<p>
<button href="#"
id="follow-button"
class="btn btn-xs">
<i id="follow-icon" class="fa fa-eye-close"></i>Following
</button>
</p>
</li>
{% endif %}
{% verbatim %}
</ul>
<img src="{{ profile.avatar_image }}" class="img-polaroid">
<p>{{ profile.description }}</p>
<dl class="dl-horizontal">
<dt>Last Seen</dt>
<dd>{{human_last_login}}</dd>
<dt>Mixes Uploaded</dt>
<dd>{{ profile.mix_count }}</dd>
<dt>Followers</dt>
<dd>{{ profile.follower_count }}</dd>
<dt>Following</dt>
<dd>{{ profile.following_count }}</dd>
</dl>
</div>
{% endverbatim %}