php-mpos/templates/bluemoon/admin/dashboard/registrations.tpl
2016-07-06 14:37:49 +02:00

36 lines
1.1 KiB
Smarty

<div class="col-lg-6">
<div class="widget">
<div class="widget-header">
<div class="title">
<a href="{$smarty.server.SCRIPT_NAME}?page=admin&action=registrations">Registrations</a>
</div>
<span class="tools">
<i class="fa fa-pencil"></i>
</span>
</div>
<div class="widget-body">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>24 hours</th>
<th>7 days</th>
<th>1 month</th>
<th>6 months</th>
<th>1 year</th>
</tr>
</thead>
<tbody>
<tr>
<td>{$USER_REGISTRATIONS.24hours}</td>
<td>{$USER_REGISTRATIONS.7days}</td>
<td>{$USER_REGISTRATIONS.1month}</td>
<td>{$USER_REGISTRATIONS.6month}</td>
<td>{$USER_REGISTRATIONS.1year}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>