Hi all,
every day we have a lot of iterative issues, eg paper jam on a printer or blocked session in citrix. We are looking for a possibility to create simple templates for such issues, where most general informations are pre-recorded, so that we can choose the respective template from a list and only have to fill in additional user information or specifications. How can we do this?
Create issue types like 'Paper jam' or 'Blocked session Citrix', and so onCreate one field configuration for each issue type in a project specific field configuration scheme.For each issue type you can initialize the field description (or summary) in the Create issue screen with code like the one below. You just have to put this code in the Description of the system field description/summary
<script language="JavaScript">AJS.$(document).ready(function() { if ( document.getElementById("description").value == "" ) document.getElementById("description").value = "Line1\n\Line2\n..."; }</script>
That way you easily prefill the Create screen.You can even use Wiki-Synatax if you have enabled the Wiki-Renderer in the field configuration.
Our current guidance to our project teams is to create a version called "Templates" and fill it with stories for cloning. I did not find any existing capabilities or plug-ins in the catalog that would otherwise suffice.
If you can get fancy, you might also build Excel macros for importing pre-defined issues.
This also appears to be related to this feature request: https://jira.atlassian.com/browse/JRA-7731
There's a plugin that allows you to export issues using a word template. It's simple and easy! all you have to do is to create your own templates using keywords.
Check more information here: Xporter for JIRA
Cheers,
Hi,
See https://jira.atlassian.com/browse/JRA-7731#comment-421799
or you can directly go to at https://marketplace.atlassian.com/plugins/com.intenso.jira.issue-templates
Cheers,Kris
this sounds like what I'm after but I'm not clear on the steps. In the past I had a shortcut in Chrome that autofilled my newly created ticket with a template for filling in, this was a huge time saver and meant that the tickets all had the same layout.
Still not supported in the cloud
We are working on it at this moment Issue Templates will see Cloud in the next few weeks.
I tried your suggestion.. didn't work
Edit Field Layout Item - JIRA 2017-01-16 20-56-44.pngCreate issue - JIRA 2017-01-16 20-58-22.png
Same here. It's not the Description field that gets filled in, but a space directly below it. Any help on this one will be appreciated.
Do we have Issue Templates in Jira cloud yet?
Actually the best workaround is to use a python script for this.
There is a very "easy-to-use" python module for interfacing with jira. Read the docs here. With very basic python skills, you will be up and running within 30min.https://jira.readthedocs.io/en/master/
further pros are:
* no need to install plugins.
* you can reuse it on every jira instance you've got access to.
* you will be more productive, and no one else will know why .
I don't see how that's a solution to the issue at hand? That library does not allow one to create issue templates.
You could use python to create an issue builder class. Create defaults that are configurable and then you will have an issue template maker functioning as a python executable.
@Wolfram Kube -
do you have any that you are using and would recommend for datacenter? I am looking at 3 -
- Easy Templates for Jira Issues
- Issue Templates for Jira
-Smart Issue Templates for Jira
I see this question is closed
It looks like you're new here. Sign in or register to get started.