gallery.accords-library.com/client/html/users_page.tpl

31 lines
1.2 KiB
Smarty
Raw Normal View History

2016-04-10 20:13:01 +00:00
<div class='user-list'>
<ul><!--
--><% for (let user of ctx.results) { %><!--
2016-04-10 20:13:01 +00:00
--><li>
<div class='wrapper'>
2016-06-11 07:59:29 +00:00
<% if (ctx.canViewUsers) { %>
<a class='image' href='/user/<%= user.name %>'>
<% } %>
<%= ctx.makeThumbnail(user.avatarUrl) %>
<% if (ctx.canViewUsers) { %>
</a>
<% } %>
2016-04-10 20:13:01 +00:00
<div class='details'>
2016-06-11 07:59:29 +00:00
<% if (ctx.canViewUsers) { %>
<a href='/user/<%= user.name %>'>
<% } %>
<%= user.name %>
<% if (ctx.canViewUsers) { %>
</a>
<% } %>
<br/>
Registered: <%= ctx.makeRelativeTime(user.creationTime) %><br/>
Last seen: <%= ctx.makeRelativeTime(user.lastLoginTime) %>
2016-04-10 20:13:01 +00:00
</div>
</div>
</li><!--
--><% } %><!--
--><%= ctx.makeFlexboxAlign() %><!--
2016-04-10 20:13:01 +00:00
--></ul>
</div>