Created
February 13, 2015 11:31
-
-
Save rhysgodfrey/7697bf9850eb37660df3 to your computer and use it in GitHub Desktop.
Zimbra Social Introduction - Demo 1 - User list Widget
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 | |
$core_v2_ui.GetResizedImageHtml($user.AvatarUrl, 50, 50, "%{ }") | |
<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