Skip to content

Instantly share code, notes, and snippets.

@rhysgodfrey
Created February 13, 2015 15:34
Show Gist options
  • Save rhysgodfrey/c940c991f6feb6fe422a to your computer and use it in GitHub Desktop.
Save rhysgodfrey/c940c991f6feb6fe422a to your computer and use it in GitHub Desktop.
Zimbra Social Introduction - Demo 3 - Switch to Gravatar
#set($list = $core_v2_user.List("%{IncludeHidden = 'True', PageSize = 100 }"))
#foreach($user in $list)
#beforeall
<div>
#before
<div>
#each
<img src="$demo_v1_gravatar.Url($user.Id)" />
<span>$user.Username</span>
#if($user.IsSystemAccount)
<span style="font-weight: bold;">(System Account)</span>
#end
#set($profileUrl = $core_v2_urls.User($user.Id))
#if ($profileUrl)
<a href="$profileUrl">View Profile</a>
#end
#after
</div>
#afterall
</div>
#nodata
$core_v2_utility.Hide()
#end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment