-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
84 lines (67 loc) · 4.01 KB
/
Copy pathtools.html
File metadata and controls
84 lines (67 loc) · 4.01 KB
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
{extends file="admin-layout.tpl"}
{block name="no-return-functions"}
{$admin_current_location = 'tools'}
{/block}
{block name="page-title"}{intl l='Tools'}{/block}
{block name="check-resource"}admin.tools{/block}
{block name="check-access"}view{/block}
{block name="main-content"}
<div class="configuration">
<div id="wrapper" class="container">
<nav>
<ul class="breadcrumb">
<li><a href="{url path='admin/home'}">{intl l='Home'}</a></li>
<li>{intl l='Tools'}</li>
</ul>
</nav>
{hook name="tools.top" location="tools_top" }
<div class="row">
<div class="col-md-4">
<div class="menu-list-table general-block-decorator">
<div class="table-responsive">
<table class="table table-striped table-condensed">
<caption>{intl l='General tools'}</caption>
{hook name="tools.col1-top" location="tools_col1_top" }
{loop name="auth-coupon" type="auth" role="ADMIN" resource="admin.coupon" access="VIEW"}
<tr>
<td><a href="{url path='/admin/coupon'}">{intl l="Coupons"}</a></td>
<td><a class="btn btn-default btn-xs" href="{url path='/admin/coupon'}"><i class="glyphicon glyphicon-edit"></i></a></td>
</tr>
{/loop}
{loop name="auth-sales" type="auth" role="ADMIN" resource="admin.sales" access="VIEW"}
<tr>
<td><a href="{url path='/admin/sales'}">{intl l="Sales management"}</a></td>
<td><a class="btn btn-default btn-xs" href="{url path='/admin/sales'}"><i class="glyphicon glyphicon-edit"></i></a></td>
</tr>
{/loop}
{loop name="auth-brand" type="auth" role="ADMIN" resource="admin.brand" access="VIEW"}
<tr>
<td><a href="{url path='/admin/brand'}">{intl l="Brands"}</a></td>
<td><a class="btn btn-default btn-xs" href="{url path='/admin/brand'}"><i class="glyphicon glyphicon-edit"></i></a></td>
</tr>
{/loop}
{loop name="auth-export" type="auth" role="ADMIN" resource="admin.export" access="VIEW"}
<tr>
<td><a href="{url path='/admin/export'}">{intl l="Export"}</a></td>
<td><a class="btn btn-default btn-xs" href="{url path='/admin/export'}"><i class="glyphicon glyphicon-edit"></i></a></td>
</tr>
{/loop}
{loop name="auth-import" type="auth" role="ADMIN" resource="admin.import" access="VIEW"}
<tr>
<td><a href="{url path='/admin/import'}">{intl l="Import"}</a></td>
<td><a class="btn btn-default btn-xs" href="{url path='/admin/import'}"><i class="glyphicon glyphicon-edit"></i></a></td>
</tr>
{/loop}
{hook name="tools.col1-bottom" location="tools_col1_bottom" }
</table>
</div>
</div>
</div>
{hook name="tools.bottom" location="tools_bottom" }
</div>
</div>
</div>
{/block}
{block name="javascript-last-call"}
{hook name="tools.js" location="tools-js" }
{/block}