Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

        <table width="100%" border="1" cellspacing="1" cellpadding="3">
            {if $shop_sel}
            <tr>
                <th>Rang</th>
                <th>Bezeichnung</th>
                <th>Kosten</th>
                <th>Gewicht</th>
                <th>Warenwert</th>
                {section loop=$Eigenschaften name=Eigenschaft_nr}
                <th>{$Eigenschaften_Namen[Eigenschaft_nr]}</th>
                {/section}
            </tr>
            {/if}
            {section loop=$artikel name=a_ind}
            <tr bgcolor="#EEEEEE">
                <td>
                    <input name="Rang[{$artikel[a_ind].ID},{$artikel[a_ind].Language}]" type="text" size="1" value="{$artikel[a_ind].Rang}" onChange="this.form.changed.value=true;">
                </td>
                <td width="385" nowrap>
                    <a href="{$SCRIPT_NAME}?edit={$artikel[a_ind].ID}">
                        <font color="#000000">
                            <b>{$artikel[a_ind].short_line_2|default:$artikel[a_ind].kurzbezeichnung}</b>
                        </font>
                    </a>
                </td>
                <td nowrap width="113">
                    {$artikel[a_ind].preis1} &euro;
                </td>
                <td nowrap>
                    {$artikel[a_ind].preis_neu1}&nbsp;-&nbsp;{$artikel[a_ind].preis_neu2} kg
                </td>
                <td nowrap width="124">
                    {$artikel[a_ind].preis_neu3}&nbsp;-&nbsp;{$artikel[a_ind].preis_neu4} &euro;
                </td>
                {section loop=$artikel[a_ind].Eigenschaften name=Eigenschaft_nr}
                <td>{if $artikel[a_ind].Eigenschaften[Eigenschaft_nr]==1}ja{else}nein{/if}</td>
                {/section}
            </tr>
            {sectionelse}
            <tr> 
                <td bgcolor="#{$webs.bgcolor_rechts}" colspan="{$col_span|default:5}">
                    <font color="#{$webs.font_color_rechts}">
                        <b>
                            {if $shop_sel}
                                Keine Versandartikel entsprechen Ihrer Auswahl
                            {else}
                                Bitte Shop auswählen
                            {/if}!
                        </b>
                    </font>
                </td>
            </tr>
            {/section}
        </table>