Help: Edit Task Template Variables
For more help, visit the WebGUI Community Wiki.
- form.header
- Code to setup the Edit Task form. Leaving out this variable will prevent the form
from working.
- form.name
- Form element for the user to enter/edit the name of the task.
- form.seqNum
- The sequence number of this task.
- form.duration
- Form element for the duration of the task.
- form.duration.units
- Form element for the units of duration for the task.
- form.lagTime
- Form element for entering in the lag time for this task.
- form.lagTime.units
- Form element for the units of the tasks's lag time.
- form.start
- Form element for the starting date for the task.
- form.end
- Form element for the ending date for the task.
- form.dependants
- Form element for entering in which task this task depends on, by number.
- form.addUser.id
- A unique identifier for the link that creates the add user pop-up.
- form.addUser.link
- A full link for bringing up the Add User pop-up.
- form.addUser.text
- A unique identifier for the link that creates the add user pop-up.
- form.addGroup.id
- A unique identifier for the link that creates the Add Group pop-up.
- form.addGroup.link
- A full link for bringing up the Add Group pop-up.
- form.addGroup.text
- Internationalized label for "Add Group To Task".
- form.resourceDiv
- Form element for selecting a user to accomplish this task.
- form.taskType
- Form element for choosing the type of task.
- form.percentComplete
- Form element for entering in how much of the project has been completed, as a percentage.
- form.save
- A button to save data entered into the form.
- form.footer
- Code to end the form.
- extras
- The URL to the top of the Extras directory.
- task_start_label
- The internationalized word "Start".
- task_end_label
- The internationalized word "End".
- task_duration_label
- The internationalized word "Duration".
- task_lagTime_label
- The internationalized words "Lag Time".
- task_predecessor_label
- The internationalized word "Predecessor".
- task_complete_label
- The internationalized word "Complete".
- task_resource_label
- The internationalized word "Resource".
- task_save_label
- The internationalized word "Save".
- projectDashboardTemplateId
- The ID of the template to display the main view of the Project Manager.
- projectDisplayTemplateId
- The ID of the template to display one project from the Project Manager.
- ganttChartTemplateId
- The ID of the template to display the gantt chart in the Project Manager.
- editTaskTemplateId
- The ID of the template to edit a task in the Project Manager.
- resourcePopupTemplateId
- The ID of the template to display a popup for selecting resources in the Project Manager.
- resourceListTemplateId
- The ID of the template to display a popup for listing resources in the Project Manager.
- groupToAdd
- The ID of group that is allowed to manage this project manager.
- displayTitle
- A conditional variable for whether or not the title should be displayed.
- description
- The description of this wobject.
- styleTemplateId
- The assetId of the template for displaying the Asset.
- printableStyleTemplateId
- The assetId of the template for displaying the Asset for printing.
- assetId
- The unique identifier for this Asset, in base64 encoding.
- assetIdHex
- The unique identifier for this Asset, in hexadecimal format.
- title
- The title of the Asset
- menuTitle
- The title of the Asset used in Navigations.
- url
- The Asset's URL.
- isHidden
- A boolean that will be true if this Asset is set not be displayed in Navigations.
- newWindow
- A boolean that will be true if this Asset is set open in a new browser window.
- encryptPage
- A boolean that will be true if this Asset is set to be served over SSL.
- ownerUserId
- The ID of the user who owns this Asset.
- groupIdView
- The ID of the group that is allowed to view this Asset.
- groupIdEdit
- The ID of the group that is allowed to edit this Asset.
- synopsis
- A short description of the contents of the Asset.
- extraHeadTags
- Extra tags that will be added to the header of the page containing the Asset. These will be included by default so you do not need to add them youself, unless you want them to be in there twice.
- isPackage
- A boolean that will be true if this Asset is set to be a Package.
- isPrototype
- A boolean that will be true if this Asset is set to be a prototype.
- status
- With respect to version control, the status of this Asset. Typically these are the English strings "approved", "pending", "committed".
- assetSize
- How big this asset is in bytes. The sum of all database fields and attachments.
- keywords
- This will be a string with the keywords for this asset. Individual keywords will be joined with spaces, unless the keyword contains spaces, in which case it will be quoted.
- webgui.version
- The version of WebGUI on your site.
- webgui.status
- The release status for this version of WebGUI (stable, beta, gamma, etc.)
- session.user.username
- The current user's username.
- session.user.firstDayOfWeek
- From the current user's profile, the day they selected to be the first day of the week.
- session.config.extrasurl
- From the WebGUI config, the URL for the extras directory.
- session.var.adminOn
- This variable will be true if the user is in Admin mode.
- session.setting.companyName
- From the WebGUI settings, the company name.
- session.setting.anonymousRegistration
- From the WebGUI settings, whether or not anonymous registration has been enabled.
- session form variables
- Session Form Variables
Any form variables will be available in the template with this syntax:
<tmpl_var session.form.variable>
If there is more than 1 value in a form variable, only the last will be returned.
- session scratch variables
- Session Scratch Variables
Any scratch variables will be available in the template with this syntax:
<tmpl_var session.scratch.variable>
Admin Console