Improved JavaScript for better handling of non-client users.
[timetracker.git] / WEB-INF / templates / user_add.tpl
1 <script>
2 // Prepare an array of available roles. We need it for "is_client" property.
3 // It is used to selectively display client selector for client roles.
4 roles = new Array();
5 var idx = 0;
6 {foreach $active_roles as $active_role}
7 roles[idx] = new Array({$active_role.id}, '{$active_role.is_client}');
8 idx++;
9 {/foreach}
10
11 // The setDefaultRate function sets / unsets default rate for a project
12 // when a corresponding checkbox is ticked.
13 function setDefaultRate(element) {
14   var default_rate = document.userForm.rate.value;
15   if (default_rate == '') {
16     // No default rate, nothing to do!
17     return;
18   }
19   // Iterate through elements of the form to find and set the project rate. 
20   for (var i = 0; i < userForm.elements.length; i++) {
21     if ((userForm.elements[i].type == 'text') && (userForm.elements[i].name == ('rate_'+element.value))) {
22       if (element.checked) {
23         userForm.elements[i].value = default_rate;
24       } else {
25         userForm.elements[i].value = '';
26       }
27       break; // Element is found and set, nothing more to do, break out of the loop.
28     }
29   }
30 }
31
32 // handleClientControl - controls visibility of the client dropdown depending on the selected user role.
33 // We need to show it only when the "Client" user role is selected.
34 function handleClientControl() {
35   var selectedRoleId = document.getElementById("role").value;
36   var clientControl = document.getElementById("client");
37   var len = roles.length;
38   for (var i = 0; i < len; i++) {
39     if (selectedRoleId == roles[i][0]) {
40       var isClient = roles[i][1];
41       if (isClient == 1)
42         clientControl.style.visibility = "visible";
43       else {
44         clientControl.value = '';
45         clientControl.style.visibility = "hidden";
46       }
47       break;
48     }
49   }
50 }
51 </script>
52
53 {$forms.userForm.open}
54 <table cellspacing="4" cellpadding="7" border="0">
55   <table cellspacing="1" cellpadding="2" border="0">
56     <tr>
57       <td align="right">{$i18n.label.person_name} (*):</td>
58       <td>{$forms.userForm.name.control}</td>
59     </tr>
60     <tr>
61       <td align="right">{$i18n.label.login} (*):</td>
62       <td>{$forms.userForm.login.control}</td>
63     </tr>
64 {if !$auth_external}
65     <tr>
66       <td align="right">{$i18n.label.password} (*):</td>
67       <td>{$forms.userForm.pas1.control}</td>
68     </tr>
69     <tr>
70       <td align="right">{$i18n.label.confirm_password} (*):</td>
71       <td>{$forms.userForm.pas2.control}</td>
72     </tr>
73 {/if}
74     <tr>
75       <td align="right" nowrap>{$i18n.label.email}:</td>
76       <td>{$forms.userForm.email.control}</td>
77     </tr>
78     <tr>
79       <td align="right">{$i18n.form.users.role}:</td>
80       <td>{$forms.userForm.role.control} {$forms.userForm.client.control}</td>
81     </tr>
82     <tr>
83       <td align="right">{$i18n.form.users.default_rate}&nbsp;(0{$user->getDecimalMark()}00):</td>
84       <td>{$forms.userForm.rate.control}</td>
85     </tr>
86 {if $show_quota}
87     <tr>
88       <td align="right">{$i18n.label.quota}&nbsp;(%):</td>
89       <td>{$forms.userForm.quota_percent.control} <a href="https://www.anuko.com/lp/tt_27.htm" target="_blank">{$i18n.label.what_is_it}</a></td>
90     </tr>
91 {/if}
92 {if $show_projects}
93     <tr><td>&nbsp;</td></tr>
94     <tr valign="top">
95       <td align="right">{$i18n.label.projects}:</td>
96       <td>{$forms.userForm.projects.control}</td>
97     </tr>
98 {/if}
99     <tr>
100       <td colspan="2" align="center">{$i18n.label.required_fields}</td>
101     </tr>
102
103     <tr>
104       <td colspan="2" align="center" height="50">{$forms.userForm.btn_submit.control}</td>
105     </tr>
106   </table>
107 </table>
108 {$forms.userForm.close}