delete html form

modifié:         templates/backOffice/default/export.html
This commit is contained in:
Benjamin Perche
2014-07-10 14:39:52 +02:00
parent 7bd741edd1
commit bd1b64c311

View File

@@ -10,89 +10,86 @@
{block name="check-access"}view{/block} {block name="check-access"}view{/block}
{block name="main-content"} {block name="main-content"}
<div class="configuration">
<form id="export-form" method="post" {form_enctype form=$form} class="clearfix"> <div id="wrapper" class="container">
<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><a href="{url path='admin/tools'}">{intl l='Tools'}</a></li>
<li>{intl l="Exports"}</li>
</ul>
</nav>
<nav> {module_include location='tools_top'}
<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'} {loop name="export-category" type="export-category"}
{if $LOOP_COUNT % 3}
<div class="row">
{/if}
{loop name="export-category" type="export-category"} <div class="col-md-4">
{if $LOOP_COUNT % 3} <div class="menu-list-table general-block-decorator">
<div class="row"> <div class="table-responsive">
{/if} <table class="table table-striped table-condensed">
<caption>
<div class="col-md-4"> <!-- add up and down arrows -->
<div class="menu-list-table general-block-decorator"> {$TITLE}
<div class="table-responsive"> </caption>
<table class="table table-striped table-condensed"> <thead>
<caption> <tr>
<!-- add up and down arrows --> <th class="col-md-1">
{$TITLE} <a href="{url path="/admin/export"}?export_order=id{if $export_order == "id"}_reverse{/if}">
</caption> {intl l="ID"}
<thead> </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> <tr>
<th class="col-md-1"> <td>
<a href="{url path="/admin/export"}?export_order=id{if $export_order == "id"}_reverse{/if}"> {$ID}
{intl l="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> </a>
</th> {$POSITION}
<th class="col-md-9"> <a href="{url path="/admin/export/position/down"}/{$ID}">
<a href="{url path="/admin/export"}?export_order=alpha{if $export_order == "alpha"}_reverse{/if}"> <span class="glyphicon glyphicon-arrow-down"></span>
{intl l="Name"}
</a> </a>
</th> </td>
<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> </tr>
</thead> {/loop}
<tbody> </tbody>
{loop name="export-categ-list" type="export" order=$export_order category=$ID} </table>
<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>
</div> </div>
</div> </div>
{if $LOOP_COUNT % 3}
</div> </div>
{/if}
{/loop}
{module_include location='configuration_bottom'} {if $LOOP_COUNT % 3}
</div> </div>
{/if}
{/loop}
{module_include location='configuration_bottom'}
</div> </div>
</form> </div>
{/block} {/block}