X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fadmin%2Fedit_client.html;h=01363b8541920a75faa25f8fa65edd030a8014fa;hb=745a3fccc0e8ff6aaf338f7e200576e74a7f5352;hp=cd9983fcf3e01e0f2f1bfe505f5791b02aa7e87a;hpb=9b36c5639d01f1c9059381c12fac5d57ff614710;p=kivitendo-erp.git diff --git a/templates/webpages/admin/edit_client.html b/templates/webpages/admin/edit_client.html index cd9983fcf..01363b854 100644 --- a/templates/webpages/admin/edit_client.html +++ b/templates/webpages/admin/edit_client.html @@ -46,7 +46,14 @@ [% LxERP.t8('Database user and password') %] [% L.input_tag("client.dbuser", SELF.client.dbuser, class="contains_dbsettings") %] - [% L.input_tag("client.dbpasswd", SELF.client.dbpasswd, class="contains_dbsettings") %] + [% L.input_tag("client.dbpasswd", SELF.client.dbpasswd, class="contains_dbsettings", type="password") %] + + + + + [% LxERP.t8("Run task server for this client with the following user") %] + + [% L.select_tag("client.task_server_user_id", SELF.all_users, with_empty=1, empty_title=LxERP.t8("Do not run the task server for this client"), title_key="login", default=SELF.client.task_server_user_id) %] @@ -123,11 +130,12 @@ } function test_database_connectivity() { - open_jqm_window({ - url: 'controller.pl?action=Admin/test_database_connectivity', - data: $(".contains_dbsettings").serialize(), - type: 'POST', - id: 'test_db_connection_window' + kivi.popup_dialog({ + url: 'controller.pl?action=Admin/test_database_connectivity', + data: $(".contains_dbsettings").serialize(), + type: 'POST', + id: 'test_db_connection_window', + dialog: { title: kivi.t8('Database Connection Test') } }); return true; }