Cloud Migration Resources
Planning a Jira Cloud migration? These resources can help you get started:
→ JMWE Cloud features – Review Cloud features and understand key differences between DC and Cloud.
→ Migration support from Appfire – Learn how we can help you migrate smoothly.
Predefined Custom Fields
This page explains how to access the value of Predefined custom fields using Nunjucks. Each field's structure is explained with examples. To understand how to write values into these fields see, Text input for fields and JSON input for fields.
It is now possible to access any field of an issue by its Field name or ID. Click here to know how to find the ID of custom fields.
Example:
{{ issue.fields.Account.name }} and {{ issue.fields.customfield_10003.name }}, both return the name of the selected Tempo account.
When the field name contains a space or any special character, you need to use the array syntax to access the field:
Example:
{{ issue.fields['Capture for JIRA Browser'] }}
{{ issue.fields['[CHART] Date of First Response'}}
In this page:
Capture for JIRA fields
Capture for JIRA Browser
Field name:
Capture for JIRA BrowserDescription: The Capture for JIRA Browser field is a string representation of a multi-line text describing the browser of the page captured.
Structure:
Accessing the Capture for JIRA Browser field:
Capture for JIRA Browser field of the issue:
{{ issue.fields['Capture for JIRA Browser'] }}
Capture for JIRA Document Mode
Field name:
Capture for JIRA Document ModeDescription: The Capture for JIRA Document Mode field is a string representation of a multi-line text describing the document mode of the page captured.
Structure:
Accessing the Capture for JIRA Document Mode field:
Capture for JIRA Document mode field of the issue:
{{ issue.fields['Capture for JIRA Document Mode'] }}