I would like to insert information from Jira as page properties in a Confluence page so that I can make a summary (propertiereport) on another page.
When I use the normal Jira macro, the table is displayed with many columns and two rows. As a result, these can only be displayed completely in the report.
I have tried to use the table transformer to display the table differently so that I get two columns and several rows. However, this table cannot then be displayed in the report.
Can someone help me?
Hi @Lukas Mühlemann ,
Try to switch from the Page Properties/Page Properties Report macros to the Table Excerpt/Table Excerpt Include macros, they perform better with macro generated tables.
nice try, but when I want to summarize several pages in one report, several tables are displayed. In the page properties report, these are merged into one table.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When I use the Tabeltransformator it works.
but I miss the option to select the fields that i want to show in the report. because I dont need all the informations in all of the reports.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For the first point: check the "Show as a report" option in the Table Excerpt Include macro settings. Then your tables will be shown as a one combined table and you won't need the Table Transformer macro for merging.
What concerns the second point, you have two options:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Information from a Jira issue, such as start and end date, assigne,...
However, I would like to have these as a single field so that I can compile and filter them in an overview.
So that I don't have to enter and update the information manually in Confluence, I would like to import it dynamically from Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got it.
You can use our app User Macro for Confluence Cloud for that.
There are a lot of possibilities to customize it to your needs.
You can gather any information from Jira and Confluence.
Additionally, you can increase flexibility and reusability with User Parameters. In example below users can set particular project to be shown.
Here is the template that could be changed based on your needs (I would be happy to help you with that):
#set ($res = $JiraManager.get("/rest/api/2/search?jql=project=${parameters.projectKey}&maxResults=3"))
<table class="aui aui-table-sortable">
<thead>
<tr>
<td>Key</td>
<td>Summary</td>
<td>Assignee</td>
<td>Created at</td>
<td>Updated at</td>
<td>Due</td>
<td>Status</td>
</tr>
</thead>
<tbody>
#foreach ($issue in $res.issues)
<tr>
<td>$issue.key</td>
<td>$issue.fields.summary</td>
<td>$issue.fields.assignee.displayName</td>
<td>$issue.fields.created</td>
<td>$issue.fields.updated</td>
<td>$issue.fields.duedate</td>
<td>$issue.fields.status.name</td>
</tr>
#end
</tbody>
</table>
Best Regards, Roman
Wombats Corp, CEO
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.