Display a small gravatar in the nav bar when using the phone layout

(imported from commit bdfc5faa7e93b0d90abc63423be1719611f89dc0)
This commit is contained in:
Zev Benjamin 2012-10-23 12:03:50 -04:00
parent fca4cade34
commit 6403cc3592
1 changed files with 4 additions and 1 deletions

View File

@ -74,7 +74,10 @@ var people_list = [
<div class="span3">
<div class="row">
<div class="span3 sidebar-nav affix">
<img class="img-rounded" src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=60" />
<span>
<img class="img-rounded hidden-phone" src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=60" />
<img class="img-rounded visible-phone" src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=30" />
</span>
<span class="my_fullname">{{ user_profile.full_name }}</span>
<span class="my_email">{{ user_profile.user.email }}</span>
<span class="logout">(<a href="/accounts/logout?next=/accounts/login">not you?</a>)</span>