forked from PrestaShop/hummingbird
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathps_supplierlist.tpl
More file actions
27 lines (25 loc) · 865 Bytes
/
ps_supplierlist.tpl
File metadata and controls
27 lines (25 loc) · 865 Bytes
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
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{$componentName = 'search-filters-modules'}
<div id="search_filters_suppliers">
<section class="{$componentName} facet">
{if $display_link_supplier}
<a href="{$page_link}" class="{$componentName}-title d-block mb-3" title="{l s='Suppliers' d='Shop.Theme.Catalog'}">
{l s='Suppliers' d='Shop.Theme.Catalog'}
</a>
{else}
<p class="{$componentName}-title">
{l s='Suppliers' d='Shop.Theme.Catalog'}
</p>
{/if}
<div>
{if $suppliers}
{include file="module:ps_supplierlist/views/templates/_partials/$supplier_display_type.tpl" suppliers=$suppliers}
{else}
<p>{l s='No supplier' d='Shop.Theme.Catalog'}</p>
{/if}
</div>
</section>
</div>