ImpressCMS/impresscms

View on GitHub
htdocs/modules/system/templates/blocks/system_block_topusers.html

Summary

Maintainability
Test Coverage
<table cellspacing="1px" class="outer">
  <{foreach item=user from=$block.users}>
  <tr class="<{cycle values="even,odd"}>" valign="middle">
    <td align="center">
      <{if $user.avatar != ""}>
      <img src="<{$user.avatar}>" alt="<{$user.name}>'s avatar" width="32px" /><br />
      <{/if}>
      <a href="<{$xoops_url}>/userinfo.php?uid=<{$user.id}>" title="<{$user.name}>"><{$user.name}></a>
    </td>
    <td align="center"><{$user.posts}></td>
  </tr>
  <{/foreach}>
</table>