210 lines
9.6 KiB
HTML
210 lines
9.6 KiB
HTML
{extends file="admin-layout.tpl"}
|
|
|
|
{block name="no-return-functions"}
|
|
{$admin_current_location = 'tools'}
|
|
{/block}
|
|
|
|
{block name="check-resource"}admin.coupon{/block}
|
|
{block name="check-access"}view{/block}
|
|
|
|
{block name="page-title"}{intl l='Coupons'}{/block}
|
|
|
|
{block name="main-content"}
|
|
<div class="coupons">
|
|
|
|
<div id="wrapper" class="container">
|
|
|
|
<nav>
|
|
<ul class="breadcrumb">
|
|
<li><a href="{url path='admin/home'}">{intl l='Home'}</a></li>
|
|
<li><a href="{url path='admin/tools'}">{intl l='Tools'}</a></li>
|
|
<li><a href="{url path='admin/coupon'}">{intl l='Coupons'}</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
{module_include location='coupon_top'}
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="general-block-decorator">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-condensed" id="folder_list">
|
|
|
|
<caption>
|
|
{intl l='Coupons'}
|
|
|
|
{module_include location='coupon_list_caption'}
|
|
|
|
{loop type="auth" name="can_create" role="ADMIN" resource="admin.coupon" access="CREATE"}
|
|
<a class="btn btn-default btn-primary action-btn" title="{intl l='Create a new coupon'}" href="{url path='/admin/coupon/create'}">
|
|
<span class="glyphicon glyphicon-plus-sign"></span>
|
|
</a>
|
|
{/loop}
|
|
</caption>
|
|
|
|
<thead>
|
|
<tr>
|
|
<th>{admin_sortable_header
|
|
current_order=$coupon_order
|
|
order='code'
|
|
reverse_order='code-reverse'
|
|
path={url path='/admin/coupon'}
|
|
request_parameter_name='coupon_order'
|
|
label="{intl l='Code'}"
|
|
}
|
|
</th>
|
|
|
|
<th>{admin_sortable_header
|
|
current_order=$coupon_order
|
|
order='title'
|
|
reverse_order='title-reverse'
|
|
path={url path='/admin/coupon'}
|
|
request_parameter_name='coupon_order'
|
|
label="{intl l='Title'}"
|
|
}
|
|
</th>
|
|
|
|
<th class="text-center">{admin_sortable_header
|
|
current_order=$coupon_order
|
|
order='enabled'
|
|
reverse_order='enabled-reverse'
|
|
path={url path='/admin/coupon'}
|
|
request_parameter_name='coupon_order'
|
|
label="{intl l='Status'}"
|
|
}
|
|
</th>
|
|
|
|
<th class="text-center">{admin_sortable_header
|
|
current_order=$coupon_order
|
|
order='expiration-date'
|
|
reverse_order='expiration-date-reverse'
|
|
path={url path='/admin/coupon'}
|
|
request_parameter_name='coupon_order'
|
|
label="{intl l='Expiration date'}"
|
|
}
|
|
</th>
|
|
|
|
<th class="text-center">{admin_sortable_header
|
|
current_order=$coupon_order
|
|
order='days-left'
|
|
reverse_order='days-left-reverse'
|
|
path={url path='/admin/coupon'}
|
|
request_parameter_name='coupon_order'
|
|
label="{intl l='Days before expiration'}"
|
|
}
|
|
</th>
|
|
|
|
<th class="text-center">{admin_sortable_header
|
|
current_order=$coupon_order
|
|
order='usages-left'
|
|
reverse_order='usages-left-reverse'
|
|
path={url path='/admin/coupon'}
|
|
request_parameter_name='coupon_order'
|
|
label="{intl l='Usages left'}"
|
|
}
|
|
</th>
|
|
|
|
{module_include location='coupon_table_header'}
|
|
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop type="coupon" name="list_coupon" order={$coupon_order|default:'code'} backend_context="true"}
|
|
<tr>
|
|
<td>
|
|
{loop type="auth" name="can_change" role="ADMIN" resource="admin.coupon" access="UPDATE"}
|
|
<a title="{intl l='Change this coupon'}" href="{url path="/admin/coupon/update/$ID"}">{$CODE}</a>
|
|
{/loop}
|
|
{elseloop rel="can_change"}
|
|
{$CODE}
|
|
{/elseloop}
|
|
</td>
|
|
|
|
<td>{$TITLE}</td>
|
|
|
|
<td class="text-center">
|
|
{if $IS_ENABLED}
|
|
<span class="label label-success">{intl l="Enabled"}</span>
|
|
{else}
|
|
<span class="label label-default">{intl l="Disabled"}</span>
|
|
{/if}
|
|
</td>
|
|
|
|
<td class="text-center">{format_date date=$EXPIRATION_DATE output="date"}</td>
|
|
|
|
<td class="text-center">
|
|
{if $DAY_LEFT_BEFORE_EXPIRATION <= 0}
|
|
<span class="label label-default">{intl l='Expired'}</span>
|
|
{else}
|
|
{$DAY_LEFT_BEFORE_EXPIRATION}
|
|
{/if}
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
{if $USAGE_LEFT == -1}
|
|
{intl l="Unlimited"}
|
|
{elseif $USAGE_LEFT}
|
|
{$USAGE_LEFT}
|
|
{else}
|
|
<span class="label label-default">0</span>
|
|
{/if}
|
|
</td>
|
|
|
|
{module_include location='coupon_table_row'}
|
|
|
|
<td class="text-center">
|
|
{loop type="auth" name="can_change" role="ADMIN" resource="admin.coupon" access="UPDATE"}
|
|
<a title="{intl l='Change this coupon'}" href="{url path="/admin/coupon/update/$ID"}"><i class="glyphicon glyphicon-edit"></i></a>
|
|
{/loop}
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{module_include location='coupon_bottom'}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div> <!-- #wrapper -->
|
|
|
|
</div>
|
|
|
|
{/block}
|
|
|
|
|
|
{block name="javascript-initialization"}
|
|
|
|
{javascripts file='assets/js/bootstrap-editable/bootstrap-editable.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
|
|
{javascripts file='assets/js/tablesorter/jquery.tablesorter.min.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
|
|
{javascripts file='assets/js/tablesorter/jquery.metadata.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
|
|
{javascripts file='assets/js/tablesorter/jquery.tablesorter.widgets.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
|
|
{javascripts file='assets/js/tablesorter/jquery.tablesorter.widgets-filter-formatter.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
|
|
{javascripts file='assets/js/main.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
{/block}
|
|
|
|
{block name="javascript-last-call"}
|
|
{module_include location='coupon-list-js'}
|
|
{/block}
|