Conflicts: .gitignore admin-dev/themes/default/css/admin.css admin-dev/themes/default/template/controllers/categories/helpers/list/list_header.tpl admin-dev/themes/default/template/controllers/customers/helpers/list/list_header.tpl admin-dev/themes/default/template/controllers/modules/list.tpl admin-dev/themes/default/template/controllers/modules/page.tpl admin-dev/themes/default/template/controllers/modules/tab_module_line.tpl admin-dev/themes/default/template/controllers/orders/_documents.tpl admin-dev/themes/default/template/controllers/orders/_shipping.tpl admin-dev/themes/default/template/controllers/orders/helpers/view/view.tpl admin-dev/themes/default/template/controllers/payment/helpers/view/view.tpl admin-dev/themes/default/template/controllers/payment/restrictions.tpl admin-dev/themes/default/template/controllers/products/images.tpl admin-dev/themes/default/template/controllers/products/informations.tpl admin-dev/themes/default/template/header.tpl admin-dev/themes/default/template/helpers/form/form.tpl admin-dev/themes/default/template/helpers/modules_list/list.tpl classes/Tools.php controllers/admin/AdminCartRulesController.php controllers/admin/AdminProductsController.php css/admin.css
84 lines
3.4 KiB
Smarty
84 lines
3.4 KiB
Smarty
{*
|
|
* 2007-2013 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2013 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
<div id="productBox">
|
|
{include file='controllers/modules/header.tpl'}
|
|
{include file='controllers/modules/filters.tpl'}
|
|
{if $upgrade_available|@count}
|
|
<div class="alert alert-info" style="display:block;">
|
|
{l s='An upgrade is available for some of your modules!'}
|
|
<ul>
|
|
{foreach from=$upgrade_available item='module'}
|
|
<li> » <a href="{$currentIndex|escape:htmlall}&token={$token|escape:htmlall}&anchor=anchor{$module.anchor|escape:htmlall}"><b>{$module.name|escape:htmlall}</b></a></li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
{/if}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<span class="pull-right">
|
|
<a class="btn btn-default" href="index.php?controller={$smarty.get.controller|htmlentities}&token={$smarty.get.token|htmlentities}">
|
|
<i class="icon-list"></i>
|
|
{l s='Normal view'}
|
|
</a>
|
|
<a class="btn btn-default" href="index.php?controller={$smarty.get.controller|htmlentities}&token={$smarty.get.token|htmlentities}&select=favorites">
|
|
<i class="icon-star"></i>
|
|
{l s='Favorites view'}
|
|
</a>
|
|
</span>
|
|
</div>
|
|
<div id="container">
|
|
<!--start sidebar module-->
|
|
<div class="row-fluid">
|
|
<div class="categorieTitle col-lg-3">
|
|
<legend>{l s='Categories'}</legend>
|
|
<ul class="tab nav nav-pills nav-stacked">
|
|
<li class="tab-row {if isset($categoryFiltered.favorites)}active{/if}">
|
|
<a class="tab-page" href="{$currentIndex}&token={$token}&filterCategory=favorites">
|
|
{l s='Favorites'} <span class="badge pull-right">{$nb_modules_favorites}</span>
|
|
</a>
|
|
</li>
|
|
<li class="tab-row {if count($categoryFiltered) lte 0}active{/if}">
|
|
<a class="tab-page" href="{$currentIndex}&token={$token}&unfilterCategory=yes">
|
|
{l s='Total'} <span class="badge pull-right">{$nb_modules}</span>
|
|
</a>
|
|
</li>
|
|
{foreach from=$list_modules_categories item=module_category key=module_category_key}
|
|
<li class="tab-row {if isset($categoryFiltered[$module_category_key])}active{/if}">
|
|
<a class="tab-page" href="{$currentIndex}&token={$token}&{if isset($categoryFiltered[$module_category_key])}un{/if}filterCategory={$module_category_key}">
|
|
{$module_category.name} <span class="badge pull-right">{$module_category.nb}</span>
|
|
</a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div id="moduleContainer" class="col-lg-9">
|
|
<legend>{l s='Modules list'}</legend>
|
|
{include file='controllers/modules/list.tpl'}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |