X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fadmin%2Fedit_user.html;h=3a8f129592d6201cde13fbce7c35316b58d56343;hb=ad033a768bbe46566afa159008c42ff7fc6bb35a;hp=dc7b9d79c0d2caaf3e8a964b1ef1d9fb9e56807e;hpb=69df38d39da1a1fcbf59ebc8f3ddd29a1f82ec29;p=kivitendo-erp.git diff --git a/templates/webpages/admin/edit_user.html b/templates/webpages/admin/edit_user.html index dc7b9d79c..3a8f12959 100644 --- a/templates/webpages/admin/edit_user.html +++ b/templates/webpages/admin/edit_user.html @@ -5,8 +5,6 @@

[% HTML.escape(title) %]

-

[% L.link(SELF.url_for(action="show"), LxERP.t8("Back")) %]

-
[% L.hidden_tag("user.id", SELF.user.id) %] [% L.hidden_tag("action", "") %] @@ -20,7 +18,7 @@ - + [%- IF AUTH.can_change_password %] @@ -101,6 +99,20 @@
[% LxERP.t8('Login Name') %][% L.input_tag("user.login", SELF.user.login) %][% L.input_tag("user.login", SELF.user.login, class="initial_focus") %]
+

[%- LxERP.t8("CTI settings") %]

+ + + + + + + + + + + +
[% LxERP.t8("Phone extension") %][% L.input_tag("user.config_values.phone_extension", props.phone_extension) %]
[% LxERP.t8("Phone password") %][% L.input_tag("user.config_values.phone_password", props.phone_password) %]
+

[%- LxERP.t8("Access to clients") %]

[% IF SELF.all_clients.size %] @@ -109,7 +121,7 @@

- [% L.select_tag("user.clients[]", SELF.all_clients, id="user_clients", title_key="name", default=SELF.user.clients, default_key='id', multiple=1) %] + [% L.select_tag("user.clients[]", SELF.all_clients, id="user_clients", title_key="name", default=SELF.user.clients, default_value_key='id', multiple=1) %] [% L.multiselect2side("user_clients", labelsx => LxERP.t8("All clients"), labeldx => LxERP.t8("Clients this user has access to")) %]
@@ -127,7 +139,7 @@

- [% L.select_tag("user.groups[]", SELF.all_groups, id="user_groups", title_key="name", default=SELF.user.groups, default_key='id', multiple=1) %] + [% L.select_tag("user.groups[]", SELF.all_groups, id="user_groups", title_key="name", default=SELF.user.groups, default_value_key='id', multiple=1) %] [% L.multiselect2side("user_groups", labelsx => LxERP.t8("All groups"), labeldx => LxERP.t8("Groups this user is a member in")) %]
@@ -159,11 +171,6 @@ } function save_as_new() { - var new_user_login = prompt("[% LxERP.t8("Please enter the login for the new user.") %]", ""); - if (!new_user_login) - return; - - $("#user_login").val(new_user_login); $("#user_id").val(""); submit_with_action("save_user"); }