2 [%- USE L %][%- USE LxERP -%]
4 [%- INCLUDE 'common/flash.html' %]
6 <h1>[% HTML.escape(title) %]</h1>
8 <form method="post" action="controller.pl" id="form">
9 [% L.hidden_tag("client.id", SELF.client.id) %]
10 [% L.hidden_tag("action", "") %]
12 <h2>[%- LxERP.t8("Settings") %]</h2>
15 [%- IF SELF.client.id %]
17 <th align="right">[% LxERP.t8('Database ID') %]</th>
18 <td>[%- HTML.escape(SELF.client.id) %]</td>
23 <th align="right">[% LxERP.t8('Client name') %]</th>
24 <td>[% L.input_tag("client.name", SELF.client.name, class="initial_focus") %]</td>
28 <th align="right">[% LxERP.t8('Default client') %]</th>
29 <td>[% L.checkbox_tag("client.is_default", label=LxERP.t8('This is the client to be selected by default on the login screen.'), checked=SELF.client.is_default) %]</td>
33 <th align="right">[% LxERP.t8('Database name') %]</th>
34 <td>[% L.input_tag("client.dbname", SELF.client.dbname, class="contains_dbsettings") %]</td>
38 <th align="right">[% LxERP.t8('Database host and port') %]</th>
40 [% L.input_tag("client.dbhost", SELF.client.dbhost, class="contains_dbsettings") %]
41 [% L.input_tag("client.dbport", SELF.client.dbport, class="contains_dbsettings", size=6) %]
46 <th align="right">[% LxERP.t8('Database user and password') %]</th>
48 [% L.input_tag("client.dbuser", SELF.client.dbuser, class="contains_dbsettings") %]
49 [% L.input_tag("client.dbpasswd", SELF.client.dbpasswd, class="contains_dbsettings", type="password") %]
54 <th align="right">[% LxERP.t8("Run task server for this client with the following user") %]</th>
56 [% 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) %]
62 [% L.button_tag("test_database_connectivity()", LxERP.t8("Test database connectivity")) %]
65 <h2>[%- LxERP.t8("Access to clients") %]</h2>
67 [% IF SELF.all_users.size %]
69 [%- LxERP.t8("The following users will have access to this client") %]:
72 <div class="clearfix">
73 [% L.select_tag("client.users[]", SELF.all_users, id="client_users", title_key="login", default=SELF.client.users, default_value_key='id', multiple=1) %]
74 [% L.multiselect2side("client_users", labelsx => LxERP.t8("All users"), labeldx => LxERP.t8("Users that have access to this client")) %]
79 [% LxERP.t8("No users have been created yet.") %]
83 <h2>[%- LxERP.t8("Group assignment") %]</h2>
85 [% IF SELF.all_groups.size %]
87 [%- LxERP.t8("The following groups are valid for this client") %]:
90 <div class="clearfix">
91 [% L.select_tag("client.groups[]", SELF.all_groups, id="client_groups", title_key="name", default=SELF.client.groups, default_value_key='id', multiple=1) %]
92 [% L.multiselect2side("client_groups", labelsx => LxERP.t8("All groups"), labeldx => LxERP.t8("Groups valid for this client")) %]
97 [% LxERP.t8("No groups have been created yet.") %]
101 <hr size="3" noshade>
104 [% L.link(SELF.url_for(action="show"), LxERP.t8("Back")) %]
106 [% L.button_tag("submit_with_action('save_client')", LxERP.t8("Save")) %]
107 [% IF SELF.client.id %]
108 [% L.button_tag("save_as_new()", LxERP.t8("Save as new")) %]
109 [% L.button_tag("submit_with_action('delete_client')", LxERP.t8("Delete"), confirm=LxERP.t8("Are you sure?")) %]
115 <script type="text/javascript">
117 function submit_with_action(action) {
118 $("#action").val("Admin/" + action);
122 function save_as_new() {
123 var new_client_name = prompt("[% LxERP.t8("Please enter the name for the new client.") %]", "");
124 if (!new_client_name)
127 $("#client_name").val(new_client_name);
128 $("#client_id").val("");
129 submit_with_action("save_client");
132 function test_database_connectivity() {
134 url: 'controller.pl?action=Admin/test_database_connectivity',
135 data: $(".contains_dbsettings").serialize(),
137 id: 'test_db_connection_window',
138 dialog: { title: kivi.t8('Database Connection Test') }