7 <form action="controller.pl" method="post">
12 [% LxERP.t8("Part") %]: [% HTML.escape(SELF.shop_part.part.displayable_name) %]<br>
13 [% LxERP.t8("Shop") %]: [% HTML.escape(SELF.shop_part.shop.description) %]
16 [% IF SELF.shop_part.id %]
17 [% L.hidden_tag("shop_part.id", SELF.shop_part.id) %]
18 [% L.hidden_tag("shop_part.shop_id", SELF.shop_part.shop_id) %]
20 [% L.hidden_tag("shop_part.shop_id", FORM.shop_id) %]
21 [% L.hidden_tag("shop_part.part_id", FORM.part_id) %]
24 <table class="tbl-horizontal">
27 <th>[% LxERP.t8("Description") %]</th>
29 [% IF SELF.shop_part.shop.use_part_longdescription %]
30 [% L.textarea_tag('notes', SELF.shop_part.part.notes, readonly="readonly", style="width: 350px; height: 150px", class="texteditor") %]
32 [% L.textarea_tag('shop_part.shop_description', SELF.shop_part.shop_description, style="width: 350px; height: 150px", class="texteditor") %]
37 <th>[% LxERP.t8("Active") %]</th>
38 <td>[% L.yes_no_tag("shop_part.active", SELF.shop_part.active, default = "yes") %]</td>
39 <th>[% LxERP.t8("Date") %]</th>
40 <td>[% L.date_tag("shop_part.show_date", SELF.shop_part.show_date) %]</td>
43 <th>[% 'Price Source' | $T8 %]</th>
45 [% IF SELF.shop_part.active_price_source %]
46 [% SET price_source = SELF.shop_part.active_price_source %]
48 [% SET price_source = SELF.shop_part.shop.price_source %]
50 [% L.select_tag('shop_part.active_price_source', SELF.price_sources, value_key = 'id', title_key = 'name', with_empty = 0, default = price_source, default_value_key='id' ) %]
52 <th>[% LxERP.t8("Front page") %]</th>
53 <td>[% L.yes_no_tag('shop_part.front_page', SELF.shop_part.front_page) %]</td>
56 <th>[% LxERP.t8("Sort order") %]</th>
57 <td>[% L.input_tag("shop_part.sortorder", SELF.shop_part.sortorder, size=2) %]</td>
58 <th>[% LxERP.t8("Meta tag title") %]</th>
59 <td>[% L.input_tag("shop_part.metatag_title", SELF.shop_part.metatag_title, size=12) %]</td>
62 <th>[% LxERP.t8("Meta tag keywords") %]</th>
63 <td>[% L.input_tag("shop_part.metatag_keywords", SELF.shop_part.metatag_keywords, size=22) %]</td>
64 <th>[% LxERP.t8("Meta tag description") %]</th>
65 <td>[% L.textarea_tag("shop_part.metatag_description", SELF.shop_part.metatag_description, rows=4) %]</td>
71 [% IF SELF.shop_part.id %]
72 [% L.button_tag("kivi.ShopPart.save_shop_part(" _ SELF.shop_part.id _ ")", LxERP.t8("Save")) %]
74 [% L.button_tag("kivi.ShopPart.add_shop_part()", LxERP.t8("Save")) %]
78 [% IF SELF.shop_part.part.image && INSTANCE_CONF.get_parts_show_image %]
79 <a href="[% SELF.shop_part.part.image | html %]" target="_blank"><img style="[% INSTANCE_CONF.get_parts_image_css %]" src="[% SELF.shop_part.part.image | html %]"/></a>
82 </div><!-- /.wrapper -->