~ubuntu-branches/ubuntu/lucid/mahara/lucid-security

« back to all changes in this revision

Viewing changes to htdocs/theme/raw/templates/user/myfriends.tpl

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2009-11-27 22:09:03 UTC
  • mfrom: (6.3.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091127220903-aiigd3tr46z0rmcg
Tags: 1.2.0-2
Fix postrm script so that Mahara can be uninstalled

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{include file="header.tpl"}
 
2
<div id="friendslistcontainer">
 
3
    {$form}
 
4
{if $users}
 
5
    <table id="friendslist" class="fullwidth listing">
 
6
    {foreach from=$users item=user}
 
7
        <tr class="{cycle values='r0,r1'}">
 
8
        {include file="user/user.tpl" user=$user page='myfriends'}
 
9
        </tr>
 
10
    {/foreach}
 
11
    </table>
 
12
        <div class="center">
 
13
        {$pagination}
 
14
        </div>
 
15
        {else}
 
16
        <div class="message">
 
17
                {$message}
 
18
        </div>
 
19
{/if}
 
20
</div>
 
21
{include file="footer.tpl"}