Merge branch 'master' of github.com:thelia/thelia
This commit is contained in:
@@ -1,3 +1,22 @@
|
|||||||
|
tfoot{
|
||||||
|
|
||||||
|
.pagination{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-condensed {
|
||||||
|
tfoot {
|
||||||
|
> tr {
|
||||||
|
> th,
|
||||||
|
> td {
|
||||||
|
padding: 20px 5px 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.table-striped {
|
.table-striped {
|
||||||
|
|
||||||
caption {
|
caption {
|
||||||
|
|||||||
@@ -102,6 +102,39 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{/loop}
|
{/loop}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<td colspan="6">
|
||||||
|
|
||||||
|
<div class="text-center">
|
||||||
|
<ul class="pagination pagination-centered">
|
||||||
|
{if $customer_page != 1}
|
||||||
|
<li><a href="{url path="/admin/customers" page="1"}">«</a></li>
|
||||||
|
{else}
|
||||||
|
<li class="disabled"><a href="#">«</a></li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{pageloop rel="customer_list"}
|
||||||
|
{if $PAGE != $CURRENT}
|
||||||
|
<li><a href="{url path="/admin/customers" page="{$PAGE}"}">{$PAGE}</a></li>
|
||||||
|
|
||||||
|
{else}
|
||||||
|
<li class="active"><a href="#">{$PAGE}</a></li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
|
||||||
|
{/pageloop}
|
||||||
|
{if $PAGE == $LAST && $LAST != $CURRENT}
|
||||||
|
<li><a href="{url path="/admin/customers" page="$PAGE"}">»</a></li>
|
||||||
|
{else}
|
||||||
|
<li class="disabled"><a href="#">»</a></li>
|
||||||
|
{/if}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
{/ifloop}
|
{/ifloop}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@@ -110,35 +143,6 @@
|
|||||||
|
|
||||||
|
|
||||||
{module_include location='customer_bottom'}
|
{module_include location='customer_bottom'}
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12 text-center">
|
|
||||||
|
|
||||||
<ul class="pagination pagination-centered">
|
|
||||||
{if $customer_page != 1}
|
|
||||||
<li><a href="{url path="/admin/customers" page="1"}">«</a></li>
|
|
||||||
{else}
|
|
||||||
<li class="disabled"><a href="#">«</a></li>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
{pageloop rel="customer_list"}
|
|
||||||
{if $PAGE != $CURRENT}
|
|
||||||
<li><a href="{url path="/admin/customers" page="{$PAGE}"}">{$PAGE}</a></li>
|
|
||||||
|
|
||||||
{else}
|
|
||||||
<li class="active"><a href="#">{$PAGE}</a></li>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
|
|
||||||
{/pageloop}
|
|
||||||
{if $PAGE == $LAST && $LAST != $CURRENT}
|
|
||||||
<li><a href="{url path="/admin/customers" page="$PAGE"}">»</a></li>
|
|
||||||
{else}
|
|
||||||
<li class="disabled"><a href="#">»</a></li>
|
|
||||||
{/if}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{* Adding a new Category *}
|
{* Adding a new Category *}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user