blob: 43f2d1d6094c0c1ab848f2e07064be9ffa2382bb (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<?php
if (!$result):
print __("No results matched your search criteria.");
else:
if ($result):
?>
<table class="results">
<thead>
<tr>
<th><?= __("Username") ?></th>
<th><?= __("Type") ?></th>
<th><?= __("Status") ?></th>
<th><?= __("Real Name") ?></th>
<th><?= __("IRC Nick") ?></th>
<th><?= __("PGP Key Fingerprint") ?></th>
<th><?= __("Edit Account") ?></th>
</tr>
</thead>
<?php
$i = 0;
while (list($indx, $row) = each($userinfo)):
if ($i % 2):
$c = "even";
else:
$c = "odd";
endif;
?>
<tbody>
<tr class ="<?= $c ?>">
<td><a href="<?= get_uri('/packages/'); ?>?SeB=m&K=<?= $row["Username"] ?>"><?= $row["Username"] ?></a></td>
<td><?= $row["AccountType"] ?></td>
<td>
<?php
if ($row["Suspended"]):
print __("Suspended");
else:
print __("Active");
endif;
?>
</td>
<td><?php $row["RealName"] ? print htmlspecialchars($row["RealName"],ENT_QUOTES) : print " " ?></td>
<td><?php $row["IRCNick"] ? print htmlspecialchars($row["IRCNick"],ENT_QUOTES) : print " " ?></td>
<td><?php $row["PGPKey"] ? print html_format_pgp_fingerprint($row["PGPKey"]) : print " " ?></td>
<td>
<?php if (can_edit_account($row)): ?>
<a href="<?= get_user_uri($row["Username"]) . "edit/" ?>"><?= __("Edit") ?></a>
<?php else: ?>
<?php endif; ?>
</td>
</tr>
<?php
$i++;
endwhile;
?>
</table>
<table class="results">
<tr>
<td align="left">
<form action="<?= get_uri('/accounts/'); ?>" method="post">
<fieldset>
<input type="hidden" name="Action" value="SearchAccounts" />
<input type="hidden" name="O" value="<?= ($OFFSET-$HITS_PER_PAGE) ?>" />
<?php
reset($search_vars);
while (list($k, $ind) = each($search_vars)):
?>
<input type="hidden" name="<?= $ind ?>" value="<?= ${$ind} ?>" />
<?php endwhile; ?>
<input type="submit" class="button" value="<-- <?= __("Less") ?>" />
</fieldset>
</form>
</td>
<td align="right">
<form action="<?= get_uri('/accounts/'); ?>" method="post">
<fieldset>
<input type="hidden" name="Action" value="SearchAccounts" />
<input type="hidden" name="O" value="<?= ($OFFSET+$HITS_PER_PAGE) ?>" />
<?php
reset($search_vars);
while (list($k, $ind) = each($search_vars)):
?>
<input type="hidden" name="<?= $ind ?>" value="<?= ${$ind} ?>" />
<?php endwhile; ?>
<input type="submit" class="button" value="<?= __("More") ?> -->" />
</fieldset>
</form>
</td>
</tr>
</table>
<?php else: ?>
<p style="text-align:center;">
<?= __("No more results to display."); ?>
</p>
<?php endif; ?>
<?php endif; ?>
|