This question is in reference to Atlassian Documentation: Task Report Macro
How can I restrict the task report to summazire only those tasks, listed on the same page as the macro is - when I do not know the pagename yet - e.g. for templates or code snippets.
With other macros, there is a placeholder "@self" or "@localspace" available.
Here is what I would do. You will need the Confluence Source Editor. It is free and made by Atlassian. First add a task report macro to your page and set it up the way you want without the page ... we'll get to that in a sec.
image2016-8-4 11:7:45.png
Then open up the source of the page(top right corner of the editor) to grab the storage format for the macro.
image2016-8-4 11:8:44.png
image2016-8-4 11:9:27.png
Select the macro storage format and copy it. The highlighted part in the above image is the page parameter and we are going to create a user macro that will implement the built-in task report macro but will dynamically swap out the page parameter.
Go to Confluence Admin -> User Macros and create a new one. The below user macro definition is based on what you see above. If you want more of the report macro parameters set a certain way then do that before you copy the storage format for creating your user macro ... again we are just going to switch out that one "pages" parameter.
Page Task Report Macro
Macro Namepage_task_report
Macro TitlePage Task Report
DescriptionWhatever you want
Macro Body ProcessingNo macro body
Template
## Developed by: Davin Studer ## Date created: 08/04/2016 ## @noparams <ac:structured-macro ac:name="tasks-report-macro"> <ac:parameter ac:name="pages">$content.id</ac:parameter> <ac:parameter ac:name="labels">Stuff</ac:parameter> </ac:structured-macro>
You now have a macro that you can drop into your templates.
Sounds cool - and thanks for your effort to make it a tutorial
related: https://community.atlassian.com/t5/Confluence-questions/Can-you-add-a-Task-Report-to-a-template-that-shows-all-open/qaq-p/80698
Unfortunately, I don't know a solution for this
Why is this question marked "solved"?
Agree with Martin. This does not seem like a solution to the obvious need.
Currently, you cannot point the task report macro at the current page. This allows you to create a wrapper around the built-in task report macro that will dynamically put in the page id for you ... effectively giving you the ability to point it at the current page. It may not be the ideal but it allows you get that functionality now instead of having to wait for it to be natively implemented.
Is there an easier way to do this?
It looks like you're new here. Sign in or register to get started.