Issue 120: Approve repo should use the same table style as the rest of the system

This commit is contained in:
Nathan Adams 2016-03-06 16:40:25 -06:00
parent 57641e1661
commit a118e8c73a

View File

@ -12,7 +12,9 @@
{$error} {$error}
{/foreach} {/foreach}
{/if} {/if}
<table> <div class="content">
<table class="recent-issues">
<thead>
<tr> <tr>
<th> <th>
Short Name Short Name
@ -36,6 +38,8 @@
Reject Reject
</th> </th>
</tr> </tr>
</thead>
<tbody>
{foreach $requests as $req} {foreach $requests as $req}
<tr> <tr>
<td> <td>
@ -63,6 +67,8 @@
</td> </td>
</tr> </tr>
{/foreach} {/foreach}
</tbody>
</table> </table>
</div>
{/block} {/block}