Created
February 13, 2015 15:34
-
-
Save rhysgodfrey/c940c991f6feb6fe422a to your computer and use it in GitHub Desktop.
Zimbra Social Introduction - Demo 3 - Switch to Gravatar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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