jqModal-Dialoge durch jQuery-UI-Dialoge ersetzen
[kivitendo-erp.git] / templates / webpages / admin / edit_client.html
1 [%- USE HTML %]
2 [%- USE L %][%- USE LxERP -%]
3
4 [%- INCLUDE 'common/flash.html' %]
5
6 <h1>[% HTML.escape(title) %]</h1>
7
8 <form method="post" action="controller.pl" id="form">
9  [% L.hidden_tag("client.id", SELF.client.id) %]
10  [% L.hidden_tag("action", "") %]
11
12  <h2>[%- LxERP.t8("Settings") %]</h2>
13
14  <table>
15 [%- IF SELF.client.id %]
16   <tr>
17    <th align="right">[% LxERP.t8('Database ID') %]</th>
18    <td>[%- HTML.escape(SELF.client.id) %]</td>
19   </tr>
20 [%- END %]
21
22   <tr>
23    <th align="right">[% LxERP.t8('Client name') %]</th>
24    <td>[% L.input_tag("client.name", SELF.client.name, class="initial_focus") %]</td>
25   </tr>
26
27   <tr>
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>
30   </tr>
31
32   <tr>
33    <th align="right">[% LxERP.t8('Database name') %]</th>
34    <td>[% L.input_tag("client.dbname", SELF.client.dbname, class="contains_dbsettings") %]</td>
35   </tr>
36
37   <tr>
38    <th align="right">[% LxERP.t8('Database host and port') %]</th>
39    <td>
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) %]
42    </td>
43   </tr>
44
45   <tr>
46    <th align="right">[% LxERP.t8('Database user and password') %]</th>
47    <td>
48     [% L.input_tag("client.dbuser",   SELF.client.dbuser, class="contains_dbsettings") %]
49     [% L.input_tag("client.dbpasswd", SELF.client.dbpasswd, class="contains_dbsettings") %]
50    </td>
51   </tr>
52  </table>
53
54  <div>
55   [% L.button_tag("test_database_connectivity()", LxERP.t8("Test database connectivity")) %]
56  </div>
57
58  <h2>[%- LxERP.t8("Access to clients") %]</h2>
59
60 [% IF SELF.all_users.size %]
61  <p>
62   [%- LxERP.t8("The following users will have access to this client") %]:
63  </p>
64
65  <div class="clearfix">
66   [% L.select_tag("client.users[]", SELF.all_users, id="client_users", title_key="login", default=SELF.client.users, default_value_key='id', multiple=1) %]
67   [% L.multiselect2side("client_users", labelsx => LxERP.t8("All users"), labeldx => LxERP.t8("Users that have access to this client")) %]
68  </div>
69
70 [%- ELSE %]
71  <p>
72   [% LxERP.t8("No users have been created yet.") %]
73  </p>
74 [%- END %]
75
76  <h2>[%- LxERP.t8("Group assignment") %]</h2>
77
78 [% IF SELF.all_groups.size %]
79  <p>
80   [%- LxERP.t8("The following groups are valid for this client") %]:
81  </p>
82
83  <div class="clearfix">
84   [% L.select_tag("client.groups[]", SELF.all_groups, id="client_groups", title_key="name", default=SELF.client.groups, default_value_key='id', multiple=1) %]
85   [% L.multiselect2side("client_groups", labelsx => LxERP.t8("All groups"), labeldx => LxERP.t8("Groups valid for this client")) %]
86  </div>
87
88 [%- ELSE %]
89  <p>
90   [% LxERP.t8("No groups have been created yet.") %]
91  </p>
92 [%- END %]
93
94 <hr size="3" noshade>
95
96 <p>
97  [% L.link(SELF.url_for(action="show"), LxERP.t8("Back")) %]
98
99  [% L.button_tag("submit_with_action('save_client')", LxERP.t8("Save")) %]
100  [% IF SELF.client.id %]
101   [% L.button_tag("save_as_new()", LxERP.t8("Save as new")) %]
102   [% L.button_tag("submit_with_action('delete_client')", LxERP.t8("Delete"), confirm=LxERP.t8("Are you sure?")) %]
103  [%- END %]
104 </p>
105
106 </form>
107
108 <script type="text/javascript">
109  <!--
110   function submit_with_action(action) {
111     $("#action").val("Admin/" + action);
112     $("#form").submit();
113   }
114
115   function save_as_new() {
116     var new_client_name = prompt("[% LxERP.t8("Please enter the name for the new client.") %]", "");
117     if (!new_client_name)
118       return;
119
120     $("#client_name").val(new_client_name);
121     $("#client_id").val("");
122     submit_with_action("save_client");
123   }
124
125   function test_database_connectivity() {
126     kivi.popup_dialog({
127       url:    'controller.pl?action=Admin/test_database_connectivity',
128       data:   $(".contains_dbsettings").serialize(),
129       type:   'POST',
130       id:     'test_db_connection_window',
131       dialog: { title: kivi.t8('Database Connection Test') }
132     });
133     return true;
134   }
135    -->
136 </script>