Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: if you have a template already selected and want to create a new template, click the New template button. This will clear your form.

...

Template Description

Template description

The Template Description field is an optional feature in the template creator view of our application. This field allows you to assign a name or description to your template, making it easier to identify and differentiate your templates from one another. Keep in mind that the template name must not exceed 500 characters.

...

Code Block
#Task / components: "Component1, @inherit, Component2"

Available fields

Field

Syntax

Example

Notes

Inherit

Summary

#{summary}/

#Test preparation/

Required

YES

Description

#{summary}/description:"{description}"

#Test preparation/description:"This is a standard test prep sub-task."

 

YES

Assignee

#{summary}/assignee:"{assignee}"

#Test preparation/assignee:"John Smith"

Value can be set to the user id or user name. In the case of the name, it is advised to use the full name to pick the correct user.

User needs to exist.

YES

Reporter

#{summary}/reporter:"{reporter}"

#Test preparation/reporter:"Mary Smith"

Value can be set to the user id or user name. In the case of the name, it is advised to use the full name to pick the correct user.

User needs to exist.

YES

Issue type

#{summary}/issueType:"{issueType}"

#Test preparation/issueType:"Testing Sub-task"

Chosen issue type needs to exist.

NO

Priority

#{summary}/priority:"{priority}"

#Test preparation/priority:"low"

Chosen priority needs to exist.

YES

Time tracking

#{summary}/estimate:"{estimate}"

#Test preparation/estimate:"2d 3h 30m"

 

YES

Due date

#{summary}/dueDate:"{dueDate}"

#Test preparation/dueDate:"2022-02-20"

 

YES

Fix versions

#{summary}/fixVersions:"{fixVersion1,fixVersion2,...}"

#Test preparation/fixVersions:"Release 2.21,MASTER"

Chosen fix versions need to exist.

Accepts multiple arguments.

YES

Labels

#{summary}/labels:"{label1,label2,...}"

#Test preparation/labels:"Triage,Discussion"

Accepts multiple arguments.

YES

Component

#{summary}/components:"{component1,component2,...}"

#Test preparation/components:"Chart1,Chart2"

Chosen components need to exist.

Accepts multiple arguments.

YES

Custom fields

Before you begin, it's important to confirm that the desired fields are appropriately configured in your current Jira project or subtask setup. To do this, follow these steps:

...

When populating the field content in Atlassian, ensure that the information is enclosed within quotation marks, like so: "Content". Keep in mind that Atlassian's custom field values are case-sensitive. This means that they must precisely match the setup in your Jira project.

Supported Custom fields

Classic Jira type

Next-gen Jira type

Syntax

Example

Notes

Inherit

Short text

Short text

#{summary}/ {CustomField}:{text}

#Test preparation/customText:”this is custom text”

YES

Paragraph

Paragraph

#summary}/ {CustomField}:{text}

#Test preparation/ customParagraph:”this is Paragraph”

 

YES

Date Picker

Date

#{summary}/ {CustomField}:{date}

#Test preparation/ customDate:”2021-09-15”

YES

Number Field

Number

#{summary}/ {CustomField}:{number}

#Test preparation/ customNumber:”2.2”

YES

Date Time Picker

Time stamp

#{summary}/ {CustomField}:{timeStamp}

#Test preparation/ customDate:”2021-09-29T08:00+0200”

+0200 -> the difference between your time zone and the Dubai one

YES

Labels

Labels

#{summary}/ {CustomField}:{label1 label2…}

#Test preparation/ customLabels:”Triage,Discussion”

Accepts multiple arguments.

YES

Select List(single choice)

Dropdown

#{summary}/ {CustomField}:{option1}

#Test preparation/ customDropdown:”todo”

YES

Checkboxes/ Select list(multiple choices)

Checkbox

#{summary}/ {CustomField}:{option1,option2…}

#Test preparation / customCheckbox:”todo,spike”

Accepts multiple arguments.

YES

User Picker(multiple users)

People

#{summary}/ {CustomField}:{user1,user2…}

#Test preparation /customPeople :”Mary Smith,John Smith”

Accepts multiple arguments.

YES

User Picker(single user)

#{summary}/ {CustomField}:{user}

#Test preparation/customSingleUser :”Mary Smith,”

YES

Radio Buttons

#{summary}/ {CustomField}:{option}

#Test preparation/ customRadio:”Radio”

YES

URL Field

#{summary}/ {CustomField}:{url}

#Test preparation/customUrl :”https://www.google.com

YES

Group Picker(multiple groups)

#{summary}/ {CustomField}:{group1,group2…}

#Test preparation/customGroupPicker :”Eclipse,Atlassian”

Accepts multiple arguments.

YES

Group Picker(single group)

#{summary}/ {CustomField}:{group1}

#Test preparation/customGroupPucker :”Eclipse”

YES

Text Field(read only)

#{summary}/ {CustomField}:{text}

#Test preparation/customTextField :”Text only to read”

YES

Project Picker

#{summary}/ {CustomField}:{project}

#Test preparation/customProjectPicker :”pluginEclipse”

Single project name

YES

Version Picker(multiple versions)

#{summary}/ {CustomField}:{version1,version2…}

#Test preparation/customVersion :”beta,V1.0”

Accepts multiple arguments.

YES

Version Picker(single version)

#{summary}/ {CustomField}:{version}

#Test preparation/customVersionPicker :”beta”

Single version

YES

Select list(cascading)

#{summary}/ CustomField:"{option 1,child value}"

#Test preparation/CustomField:"option 1,child value"

YES

...

Template Validation

Template Validation

The Template Validation functionality allows you to validate the syntax of your template. This feature is available in both the main section of our plugin and the template creator window. By validating your template, you can ensure that it adheres to specific rules and guidelines. By adhering to the validation rules outlined in this manual, you can create error-free templates that accurately represent your desired subtasks.

...

Click on the "Validate Template" button to initiate the template syntax validation process. The validation will verify the following rules:

Rule

Description

Subtask Separation

Each subsequent subtask in the template must be separated by a new line. Ensure that you start a new line for each subtask.

 

Subtask Representation

The hash symbol '#' represents each subtask in the template. Each subtask should have a summary field after the '#' character. For example:

``` #Code Review

```

 

Field Separation

The slash '/' acts as a mandatory delimiter to separate the fields within a subtask. This delimiter allows you to create new fields within the subtask. For example:

 ```

#Code Review / issueType:"Technical Sub-Task" / assignee: "example@example.com"

```

(!) Exception: Custom URLs

If you are using a custom URL within a subtask, you can include it as follows:

```

#TestURL/CustomUrl:"https://www.Testtesttest.com"

 ```

(!) Exception: Unusual Field Names

If you encounter unusual field names that contain characters such as parentheses, brackets, or special symbols, you can include them. For example:

```

#TestWeirdFieldName/Test (Parenthesis test) Test_-+={[}];'<,>/?.śðŋę²³¢≠²¢½§«»!@#$%^&*()\|`~£€¥©®:"test"

```

Field Delimiter Duplication

The slash '/' used to delimit the fields within a subtask cannot be duplicated. Ensure that you don't have duplicate slashes in the template. For example:

 ```

#Technical Sub-Task" / /assignee:""

```

(!) Exception: Custom URLs

If you are using a custom URL within a subtask, you can include it as follows:

```

#TestURL/CustomUrl:"https://www.Testtesttest.com"

 ```

 

 

Duplicated Quotation Marks

The ditto mark (quotation mark) " cannot be duplicated within the area where input needs to be provided. Ensure that you don't have duplicate quotation marks around the value of a field. For example:

```

issueType:""Technical Sub-Task""

 ```

 

Field Format

The name of each field should be followed by a colon ":" and then the corresponding value. Ensure that you provide the correct field name and value format. For example:

```

issueType:"Technical Sub-Task"

```

 

 

Handling Validation Errors:

...

  • Whitespace: Template Validation does not consider whitespace and it should not affect the validation process. However, ensure that you maintain proper formatting and spacing for better readability.

  • Email Validation: Currently, the email validation check does not consider email templates, which means that when a user's email address is provided, it may not be correctly validated as a valid field. We look forward to delivering this enhancement in our future release and hope it will further improve your experience with our product.

[NEW] Save Template

Save your templates instantly on the main plug-in view by clicking on 'Save template' button, ensuring you never lose progress. Easily manage and reuse queries without switching screens. Access saved templates seamlessly from your profile or the main plug-in view.

...

[NEW] Most Recent Query

Forget saving? No worries! Retrieve your three most recent queries directly from the main plug-in view. Find them labelled under 'Recent' in the 'Saved' templates dropdown. No need to save dedicated templates or start from scratch.

[NEW] Import/Export Templates

...

Export or import templates between Jira projects effortlessly. Access this feature from the template management view. Export all templates at once or import multiple templates using convenient .csv files.

Exporting Templates

Click export with no template selected for a full export

Export a particular template by selecting it from the 'Saved' templates dropdown

Import Templates

Ensure your CSV file has headers: "Template ID," "Template description," and "Template content" (comma-separated).

Export a template first for an example of correct .CSV syntax for successful imports.\

[NEW] Dark Mode

The new feature for dark mode lovers. Enjoy our plug-in in a fully accessible dark theme for a comfortable and stylish experience. The dark mode is accessible only if the Jira setting is changed to the dark theme.

...