-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupplier-list.tpl
76 lines (67 loc) · 2.32 KB
/
supplier-list.tpl
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{capture name=path}{l s='Suppliers'}{/capture}
{include file=$tpl_dir./breadcrumb.tpl}
<h2>{l s='Suppliers'}</h2>
{if isset($errors) AND $errors}
{include file=$tpl_dir./errors.tpl}
{else}
<p class="add_margin">{strip}
<span class="bold">
{if $nbSuppliers == 0}{l s='There are no suppliers.'}
{else}
{if $nbSuppliers == 1}{l s='There is'}{else}{l s='There are'}{/if} 
{$nbSuppliers} 
{if $nbSuppliers == 1}{l s='supplier.'}{else}{l s='suppliers.'}{/if}
{/if}
</span>{/strip}
</p>
{if $nbSuppliers > 0}
<ul id="suppliers_list">
{foreach from=$suppliers item=supplier}
<li>
<!-- logo -->
<div class="logo">
{if $supplier.nb_products > 0}
<a href="{$link->getsupplierLink($supplier.id_supplier, $supplier.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$supplier.name|escape:'htmlall':'UTF-8'}">
{/if}
<img src="{$img_sup_dir}{$supplier.image|escape:'htmlall':'UTF-8'}-medium.jpg" alt="" />
{if $supplier.nb_products > 0}
</a>
{/if}
</div>
<!-- name -->
<h3>
{if $supplier.nb_products > 0}
<a href="{$link->getsupplierLink($supplier.id_supplier, $supplier.link_rewrite)|escape:'htmlall':'UTF-8'}">
{/if}
{$supplier.name|truncate:60:'...'|escape:'htmlall':'UTF-8'}
{if $supplier.nb_products > 0}
</a>
{/if}
</h3>
<!-- <p class="description">
{if $supplier.nb_products > 0}
<a href="{$link->getsupplierLink($supplier.id_supplier, $supplier.link_rewrite)|escape:'htmlall':'UTF-8'}">
{/if}
{$supplier.description|escape:'htmlall':'UTF-8'}
{if $supplier.nb_products > 0}
</a>
{/if}
</p>
{if $supplier.nb_products > 0}
<a href="{$link->getsupplierLink($supplier.id_supplier, $supplier.link_rewrite)|escape:'htmlall':'UTF-8'}">
{/if}
<span>{$supplier.nb_products|intval} {if $supplier.nb_products == 1}{l s='product'}{else}{l s='products'}{/if}</span>
{if $supplier.nb_products > 0}
</a>
{/if}
-->
{if $supplier.nb_products > 0}
<p><a class="button" href="{$link->getsupplierLink($supplier.id_supplier, $supplier.link_rewrite)|escape:'htmlall':'UTF-8'}">{l s='view products'}</a></p>
{/if}
<br class="clear"/>
</li>
{/foreach}
</ul>
{include file=$tpl_dir./pagination.tpl}
{/if}
{/if}