From 80132c6afca2f2fecb50fff85abe3f99f20e9b83 Mon Sep 17 00:00:00 2001 From: "G. Richardson" Date: Wed, 7 Dec 2016 12:07:16 +0100 Subject: [PATCH] Warengruppen Umstellung auf Controller - Templatefile vergessen --- templates/webpages/partsgroup/list.html | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 templates/webpages/partsgroup/list.html diff --git a/templates/webpages/partsgroup/list.html b/templates/webpages/partsgroup/list.html new file mode 100644 index 000000000..72893932f --- /dev/null +++ b/templates/webpages/partsgroup/list.html @@ -0,0 +1,33 @@ +[%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE T8 -%][%- INCLUDE 'common/flash.html' %] + +

[% title %]

+ +

+ + + + + + + + + + + [%- FOREACH partsgroup = SELF.all_partsgroups %] + + + + + + [%- END %] + +
[ LxERP.t8('reorder item') %][% 'Description' | $T8 %][% 'Obsolete' | $T8 %]
[ LxERP.t8('reorder item') %][% HTML.escape(partsgroup.partsgroup) %][% HTML.escape(partsgroup.obsolete) %]
+

+ +
+ +[% L.sortable_element('#partsgroup_list tbody', url=SELF.url_for(action='reorder'), with='partsgroup_id') %] + +

+ [%- 'Add' | $T8 %] +

-- 2.20.1