Added configure link for the roles option.
[timetracker.git] / WEB-INF / templates / profile_edit.tpl
index 3dc8bc9..5bb5080 100644 (file)
@@ -1,4 +1,19 @@
 <script>
+// handleRolesCheckbox - controls visibility of the Configure and What is it? links on the right.
+function handleRolesCheckbox() {
+  var rolesCheckbox = document.getElementById("roles");
+  var configureLabel = document.getElementById("roles_config");
+  var whatIsItLabel = document.getElementById("roles_what_is_it");
+  if (rolesCheckbox.checked) {
+    configureLabel.style.display = "inline";
+    whatIsItLabel.style.display = "none";
+  } else {
+    configureLabel.style.display = "none";
+    whatIsItLabel.style.display = "inline";
+  }
+}
+
+
 // handleTaskRequiredCheckbox - controls visibility of the Task Required checkbox.
 function handleTaskRequiredCheckbox() {
   var taskRequiredCheckbox = document.getElementById("task_required");
@@ -144,7 +159,7 @@ function handlePluginCheckboxes() {
   {if defined(DEBUG_ROLES)}
           <tr>
             <td align="right" nowrap>{$i18n.label.roles}:</td>
-            <td>{$forms.profileForm.roles.control} <a href="https://www.anuko.com/lp/tt_19.htm" target="_blank">{$i18n.label.what_is_it}</a></td>
+            <td>{$forms.profileForm.roles.control} <span id="roles_config"><a href="roles.php">{$i18n.label.configure}</a></span> <span id="roles_what_is_it"><a href="https://www.anuko.com/lp/tt_19.htm" target="_blank">{$i18n.label.what_is_it}</a></span></td>
           </tr>
   {/if}
           <tr>