~ubuntu-branches/ubuntu/maverick/znc/maverick

« back to all changes in this revision

Viewing changes to modules/webadmin/skins/default/ListUsers.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Matthäi
  • Date: 2010-05-24 18:05:44 UTC
  • mfrom: (1.3.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100524180544-8e4s3f4nj0lhyw7n
Tags: 0.090~rc1-1
* New upstream release candidate.
  - Drop znc-webadmin package. It is now provided in the core source code.
  - Rename discon_kick module to disconkick.
  - Add charset and notes module.
* Add missing dependency on libc-ares-dev to znc-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<? INC Header.tmpl ?>
2
 
                <?IF !UserLoop?>
3
 
                                There are no users defined.  Click <a href="adduser">here</a> if you would like to add one.
4
 
                <?ELSE?>
5
 
                                <table>
6
 
                                        <thead>
7
 
                                        <tr>
8
 
                                                <td>Action</td>
9
 
                                                <td>Username</td>
10
 
                                                <td>Clients</td>
11
 
                                                <td>Current Server</td>
12
 
                                                <td>IRC Nick</td>
13
 
                                        </tr>
14
 
                                        </thead>
15
 
 
16
 
                                        <tbody>
17
 
                        <?LOOP UserLoop?>
18
 
                                        <tr class="<?IF __EVEN__?>evenrow<?ELSE?>oddrow<?ENDIF?>">
19
 
                                                <td>
20
 
                                                        <span class="nowrap">
21
 
                                                                [<a href="edituser?user=<?VAR Username ESC=URL?>">Edit</a>]
22
 
                                                                <? IF !IsSelf ?>[<a href="deluser?user=<?VAR Username ESC=URL?>" onClick="return confirm('Do you really wish to remove this user?');">Delete</a>]<? ENDIF ?>
23
 
                                                        </span>
24
 
                                                </td>
25
 
                                                <td><? VAR Username ESC=HTML ?></td>
26
 
                                                <td><? VAR Clients ESC=HTML ?></td>
27
 
                                                <td><? VAR Server ESC=HTML DEFAULT="-N/A-" ?></td>
28
 
                                                <td><? VAR IRCNick ESC=HTML ?></td>
29
 
                                        </tr>
30
 
                        <?ENDLOOP?>
31
 
                                        </tbody>
32
 
                                </table>
33
 
                <?ENDIF?>
34
 
<? INC Footer.tmpl ?>