Fixed a problem with predefined expenses missing on mobile pages.
[timetracker.git] / WEB-INF / templates / profile_edit.tpl
index 4851118..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");
@@ -141,6 +156,12 @@ function handlePluginCheckboxes() {
             <td align="right">{$i18n.label.currency}:</td>
             <td>{$forms.profileForm.currency.control}</td>
           </tr>
+  {if defined(DEBUG_ROLES)}
+          <tr>
+            <td align="right" nowrap>{$i18n.label.roles}:</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>
            <td align="right" nowrap>{$i18n.label.language}:</td>
            <td>{$forms.profileForm.lang.control}</td>