adding user ID to table

This commit is contained in:
Sebastian Grewe 2013-06-04 11:55:36 +02:00
parent 065f5e6d16
commit 60789b9332

View File

@ -27,6 +27,7 @@
</center> </center>
<table width="100%" class="pagesort"> <table width="100%" class="pagesort">
<colgroup> <colgroup>
<col style="width: 25px">
<col style="width: 120px"> <col style="width: 120px">
<col style="width: 120px"> <col style="width: 120px">
<col style="width: 60px"> <col style="width: 60px">
@ -39,6 +40,7 @@
</colgroup> </colgroup>
<thead> <thead>
<tr> <tr>
<th class="center">ID</th>
<th>Username</th> <th>Username</th>
<th>E-Mail</th> <th>E-Mail</th>
<th class="right">Hashrate</th> <th class="right">Hashrate</th>
@ -53,6 +55,7 @@
<tbody> <tbody>
{section name=user loop=$USERS|default} {section name=user loop=$USERS|default}
<tr> <tr>
<td class="center">{$USERS[user].id}</td>
<td>{$USERS[user].username}</td> <td>{$USERS[user].username}</td>
<td>{$USERS[user].email}</td> <td>{$USERS[user].email}</td>
<td class="right">{$USERS[user].hashrate}</td> <td class="right">{$USERS[user].hashrate}</td>
@ -69,6 +72,7 @@
</tbody> </tbody>
<tfoot> <tfoot>
<tr> <tr>
<th class="center">ID</th>
<th>Username</th> <th>Username</th>
<th>E-Mail</th> <th>E-Mail</th>
<th class="right">Hashrate</th> <th class="right">Hashrate</th>