Subversion-Projekte lars-tiefland.webanos.zeldi.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
<!-- $Id: artstamm_artikel.tpl 2969 2022-11-29 14:29:26Z tiefland $ BEGIN -->
2
<style>
3
 #artikel .itemTable_container .itemTable_rownew td {
4
     padding-bottom: 10px;
5
     padding-top: 10px;
6
     border-bottom:1px solid #3A3B3D;
7
}
8
 
9
#artikel .itemTable_container .itemTable_rownew{
10
    border-bottom: 1px solid #3A3B3D;
11
    width: 100%;
12
}
13
#artikel .itemTable_container .itemTable_rownew:hover{
14
    background-color: #ccc;
15
}
16
 
17
.bildnew{
18
    width: 5%;
19
    float: left;
20
}
21
 
22
.tdbild{
23
    width: 5%;
24
    float: left;
25
}
26
.imgcls{
27
/*  width:50px;*/
28
}
29
.preisnew{
30
    padding: 0 6px 0 0;
31
    text-align: right;
32
}
33
</style>
34
<table width="100%" class="itemTable_container" border="0" cellspacing="0">
35
    <thead>
36
    <th style="text-align: left;">&nbsp;</th>
37
        <th style="text-align: left;">Name</th>
38
        {* Eigenschaften *}
39
        {$ie = 0}
40
        {foreach $dropdown_opts as $index => $data}
41
        {if $data["options"]|@count > 1}
42
        {$ie = $ie + 1}
43
        <th style="text-align: left;">{$data['label']}</th>
44
        {/if}
45
        {/foreach}
46
        {* /Eigenschaften *}
47
        <th class="lieferstatus">Lieferstatus</th>
48
        <th class="preisnew">Preis</th>
49
        <th></th>
50
    </thead>
51
 
52
    <tbody>
53
    {foreach $subdir.items as $index => $itemData}
54
    <tr class="itemTable_rownew">
55
        <td>
56
            <a href="{$itemData.itemLink}">
57
                <img class="imgcls" src="/images/upload/{$itemData.medium[0]->medium->folder}/mini/{$itemData.medium[0]->medium->name}"/>
58
            </a>
59
        </td>
60
        <td class="bezeichnungnew">
61
           <a href="/{$itemData->slug}.html">{$itemData->name}</a>
62
           {if $itemData.langbezeichnung}
63
            <br />{$itemData.langbezeichnung}
64
           {/if}
65
        </td>
66
 
67
        {if $ie == 0}
68
        {else}
69
            {$i = 0}
70
            {foreach $dropdown_opts as $f}
71
                {$i = $i + 1}
72
                 <td style="width:10%">{$itemData.eigenschaften_modell[$f.nr].wert|default:"-&nbsp;"}</td>
73
                {if ($i == $ie)}
74
                    {break}
75
                 {/if}
76
            {/foreach}
77
        {/if}
78
        <td class="lieferstatus">
79
            {include file="lieferstatus.tpl" item=$itemData}
80
        </td>
81
        <td class="preisnew">{$itemData->price[0]->preis|money_format|replace:"EUR":"&euro;"|replace:" ":"&nbsp;"}</td>
82
        <td>
83
            <div class="basketImg">
84
            <img src="/images/webelemente/butt_icon_warenkorb.png" class="add_item_from_subdir" id="artstammartikel_{$itemData->id}" style="cursor:pointer;"/>
85
            </div>
86
        </td>
87
    </tr>
88
    <tr class="itemTable_break">
89
        <td colspan="100%"></td>
90
    </tr>
91
    {/foreach}
92
    </tbody>
93
</table>
94
 
95
 
96
 
97
<div style="float:none;clear:both;padding-top:2px;">Alle Preise verstehen sich inkl. MwSt., zzgl. <a href="/versand_uebersicht.html">Versandkosten</a></div>
98
<!-- $Id: artstamm_artikel.tpl 2969 2022-11-29 14:29:26Z tiefland $ END -->