X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Frequirement_spec_item%2F_function_block_form.html;h=8b227e0a7790833a265cfa3200ca069a3ff9a8ea;hb=486d0a3bc8e6ff90823a1b5e0461d0b61c11b771;hp=5be377ec2877b2ec09795d62ea385a0ae21cd379;hpb=cec1e6007ff1369e0b6a70ae6e02b7755d0d444e;p=kivitendo-erp.git diff --git a/templates/webpages/requirement_spec_item/_function_block_form.html b/templates/webpages/requirement_spec_item/_function_block_form.html index 5be377ec2..8b227e0a7 100644 --- a/templates/webpages/requirement_spec_item/_function_block_form.html +++ b/templates/webpages/requirement_spec_item/_function_block_form.html @@ -1,20 +1,43 @@ [%- USE LxERP -%][%- USE L -%][%- USE HTML -%][%- USE JavaScript -%][%- USE P -%][% SET style="width: 500px" %] [% DEFAULT id_base = 'edit_function_block_' _ SELF.item.id %] +[%- SET a_options = '' %] +[%- IF SELF.item.id %] + [%- SET a_options = "to_show: '#" _ SELF.item.item_type _ "-content-top-" _ SELF.item.id _ "'" %] +[%- END %] +[%- IF SELF.item.item_type == 'sub-function-block' %] + [%- SET a_options = a_options ? a_options _ ', ' : a_options %] + [%- SET a_options = a_options _ "to_hide_if_empty: '#sub-function-block-container-" _ SELF.item.parent_id _ "'" %] +[%- END %]
- [% L.hidden_tag(id_base _ '_id', SELF.item.id) %] + [% L.hidden_tag('form_prefix', id_base, id=id_base _ '_form_prefix') %] + [% L.hidden_tag('id', SELF.item.id, id=id_base _ '_id') %] [% L.hidden_tag(id_base _ '.requirement_spec_id', SELF.item.requirement_spec_id) %] [% L.hidden_tag(id_base _ '.parent_id', SELF.item.parent_id) %] + [% L.hidden_tag(id_base _ '.item_type', SELF.item.item_type) %] [% IF insert_after %] [% L.hidden_tag(id_base _ '.insert_after', insert_after) %] [% END %]
-
- [%- LxERP.t8("Dependencies") %]:
- [%- L.select_tag(id_base _ '.dependencies[]', DEPENDENCIES, default=SELECTED_DEPENDENCIES, with_optgroups=1, multiple=1, size=8, style="width: 100%") %] +
+
+[%- IF SELF.item.id -%] + [% LxERP.t8("Description of #1", SELF.item.fb_number) %] +[%- ELSIF SELF.item.item_type == 'function-block' -%] + [%- LxERP.t8("Add function block") %] +[%- ELSE -%] + [%- LxERP.t8("Add sub function block") %] +[%- END -%]:
+ [% L.textarea_tag(id_base _ '.description_as_restricted_html', SELF.item.description_as_restricted_html, id=id_base _ '_description', rows=8, style="width: 100%", class='texteditor') %] +
+ +
+ [% L.ajax_submit_tag('controller.pl?action=RequirementSpecItem/ajax_' _ (SELF.item.id ? 'update' : 'create'), '#' _ id_base _ '_form', LxERP.t8('Save'), id=id_base _ '_submit') %] + [%- LxERP.t8("Cancel") %] +
-
+
[%- LxERP.t8("Complexity") %]:
[%- L.select_tag(id_base _ '.complexity_id', SELF.complexities, title_key='description', default=SELF.item.complexity_id, style="width: 100%") %]
@@ -27,14 +50,14 @@ [%- END %]
-
- [% LxERP.t8("Description of #1", SELF.item.fb_number) %]:
- [% L.textarea_tag(id_base _ '.description', SELF.item.description, id=id_base _ '_description', rows=8, style="width: 100%") %] +
+ [%- LxERP.t8("Dependencies") %]:
+ [%- L.select_tag(id_base _ '.dependencies[]', DEPENDENCIES, default=SELECTED_DEPENDENCIES, with_optgroups=1, multiple=1, size=8, style="width: 100%") %]
+ +

- [% L.button_tag('submit_edit_item_form("' _ id_base _ '")', LxERP.t8('Save')) %] - [%- LxERP.t8("Cancel") %]