File: SERVER.html

package info (click to toggle)
flamerobin 0.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,704 kB
  • ctags: 7,892
  • sloc: cpp: 45,668; sh: 2,751; xml: 1,189; makefile: 513
file content (39 lines) | stat: -rw-r--r-- 1,569 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
  <title>User Management</title>
</head>
<body>
<font size=+2>{%object_name%}</font><br>
<br>
<table cellspacing=1 cellpadding=2 border=0 bgcolor=black>
  <tbody>
    <tr bgcolor="navy">
      <td></td>
      <td><b><font color=white>Username</font></b></td>
      <td><b><font color=white>First name</font></b></td>
      <td><b><font color=white>Middle name</font></b></td>
      <td><b><font color=white>Last name</font></b></td>
      <td><b><font color=white>Unix user ID</font></b></td>
      <td><b><font color=white>Unix group ID</font></b></td>
    </tr>
    {%users:
    <tr bgcolor="{%varcolor:#DDDDFF/#CCCCFF%}">
      <td valign="top" nowrap>
          <a href="fr://edit_user?parent_window={%parent_window%}&amp;object_address={%object_address%}"><img src="{%fr_home%}/html-templates/view.png"></a>
          {%NotSystem:
          <a href="fr://drop_user?parent_window={%parent_window%}&amp;object_address={%object_address%}"><img src="{%fr_home%}/html-templates/drop.png"></a>%}
      </td>
      <td nowrap valign="top">{%userinfo:username%}</td>
      <td nowrap valign="top">{%userinfo:first_name%}</td>
      <td nowrap valign="top">{%userinfo:middle_name%}</td>
      <td nowrap valign="top">{%userinfo:last_name%}</td>
      <td nowrap valign="top" align="right">{%userinfo:unix_user%}</td>
      <td nowrap valign="top" align="right">{%userinfo:unix_group%}</td>
    </tr>%}
  </tbody>
</table>
<br><br>
<a href="fr://add_user?parent_window={%parent_window%}&amp;object_address={%object_address%}">Add user</a>
<br>
</body>
</html>