45 lines
1.6 KiB
Smarty
45 lines
1.6 KiB
Smarty
<form id="form_search_item">
|
|
<div class="search_list">
|
|
<label for="">Hersteller</label>
|
|
{if $manufacturers}
|
|
<ul id="manufacturers_list">
|
|
{foreach from=$manufacturers item=menufacturer}
|
|
<li><a href="#">{$menufacturer->name}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
{else}
|
|
<ul id="manufacturers_list">
|
|
<li>Keine Hersteller</li>
|
|
</ul>
|
|
{/if}
|
|
<input type="text" name="manufacturers_list_textbox" id="manufacturers_list_textbox" />
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div id="search_type">
|
|
<div title="Text Suche" id="textual">
|
|
<input type="text" name="textual_item_search_box" />
|
|
|
|
<input type="checkbox" name="textual_item_search_options[]" value="name">Artikel Name</input>
|
|
<input type="checkbox" name="textual_item_search_options[]" value="short_description">Kurzbeschreibung</input>
|
|
<input type="checkbox" name="textual_item_search_options[]" value="detail_description">Detailbeschreibung</input>
|
|
</div>
|
|
<div title="Nummerische Suche" id="numeric">
|
|
<input type="text" name="numeric_item_search_box" />
|
|
|
|
<input type="checkbox" name="numeric_item_search_options[]" value="number">Artikel Nummer</input>
|
|
<input type="checkbox" name="numeric_item_search_options[]" value="ean_code">Barcode</input>
|
|
<input type="checkbox" name="numeric_item_search_options[]" value="id">Datenbank Id</input><br />
|
|
</div>
|
|
</div>
|
|
|
|
{*<div class="checkbox_container">
|
|
<input type="checkbox" name="item_limiting_factors[]" value="no_picture">Ohne Fotos</input>
|
|
<input type="checkbox" name="item_limiting_factors[]" value="on_sale">Sonderangebote</input>
|
|
</div>*}
|
|
|
|
<br />
|
|
|
|
<input type="submit" value="suchen"/>
|
|
</form> |