delete html form
modifié: templates/backOffice/default/export.html
This commit is contained in:
@@ -10,89 +10,86 @@
|
||||
{block name="check-access"}view{/block}
|
||||
|
||||
{block name="main-content"}
|
||||
<div class="configuration">
|
||||
|
||||
<form id="export-form" method="post" {form_enctype form=$form} class="clearfix">
|
||||
<div class="configuration">
|
||||
<div id="wrapper" class="container">
|
||||
|
||||
<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>{intl l="Exports"}</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<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>{intl l="Exports"}</li>
|
||||
</ul>
|
||||
</nav>
|
||||
{module_include location='tools_top'}
|
||||
|
||||
{module_include location='tools_top'}
|
||||
{loop name="export-category" type="export-category"}
|
||||
{if $LOOP_COUNT % 3}
|
||||
<div class="row">
|
||||
{/if}
|
||||
|
||||
{loop name="export-category" type="export-category"}
|
||||
{if $LOOP_COUNT % 3}
|
||||
<div class="row">
|
||||
{/if}
|
||||
|
||||
<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>
|
||||
<!-- add up and down arrows -->
|
||||
{$TITLE}
|
||||
</caption>
|
||||
<thead>
|
||||
<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>
|
||||
<!-- add up and down arrows -->
|
||||
{$TITLE}
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="col-md-1">
|
||||
<a href="{url path="/admin/export"}?export_order=id{if $export_order == "id"}_reverse{/if}">
|
||||
{intl l="ID"}
|
||||
</a>
|
||||
</th>
|
||||
<th class="col-md-9">
|
||||
<a href="{url path="/admin/export"}?export_order=alpha{if $export_order == "alpha"}_reverse{/if}">
|
||||
{intl l="Name"}
|
||||
</a>
|
||||
</th>
|
||||
<th class="col-md-2">
|
||||
<a href="{url path="/admin/export"}?export_order=manual{if $export_order == "manual"}_reverse{/if}">
|
||||
{intl l="Position"}
|
||||
</a>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{loop name="export-categ-list" type="export" order=$export_order category=$ID}
|
||||
<tr>
|
||||
<th class="col-md-1">
|
||||
<a href="{url path="/admin/export"}?export_order=id{if $export_order == "id"}_reverse{/if}">
|
||||
{intl l="ID"}
|
||||
<td>
|
||||
{$ID}
|
||||
</td>
|
||||
<td>
|
||||
<a href="{$URL}">{$TITLE}</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="{url path="/admin/export"}/position/up/{$ID}">
|
||||
<span class="glyphicon glyphicon-arrow-up"></span>
|
||||
</a>
|
||||
</th>
|
||||
<th class="col-md-9">
|
||||
<a href="{url path="/admin/export"}?export_order=alpha{if $export_order == "alpha"}_reverse{/if}">
|
||||
{intl l="Name"}
|
||||
{$POSITION}
|
||||
<a href="{url path="/admin/export/position/down"}/{$ID}">
|
||||
<span class="glyphicon glyphicon-arrow-down"></span>
|
||||
</a>
|
||||
</th>
|
||||
<th class="col-md-2">
|
||||
<a href="{url path="/admin/export"}?export_order=manual{if $export_order == "manual"}_reverse{/if}">
|
||||
{intl l="Position"}
|
||||
</a>
|
||||
</th>
|
||||
</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{loop name="export-categ-list" type="export" order=$export_order category=$ID}
|
||||
<tr>
|
||||
<td>
|
||||
{$ID}
|
||||
</td>
|
||||
<td>
|
||||
<a href="{$URL}">{$TITLE}</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="{url path="/admin/export"}/position/up/{$ID}">
|
||||
<span class="glyphicon glyphicon-arrow-up"></span>
|
||||
</a>
|
||||
{$POSITION}
|
||||
<a href="{url path="/admin/export/position/down"}/{$ID}">
|
||||
<span class="glyphicon glyphicon-arrow-down"></span>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/loop}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{/loop}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{if $LOOP_COUNT % 3}
|
||||
</div>
|
||||
{/if}
|
||||
{/loop}
|
||||
|
||||
{module_include location='configuration_bottom'}
|
||||
</div>
|
||||
{if $LOOP_COUNT % 3}
|
||||
</div>
|
||||
{/if}
|
||||
{/loop}
|
||||
|
||||
{module_include location='configuration_bottom'}
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user