I want to be able to use Excerpt (macro) from a parent page when a report about this page is created using Create from template macro.
My use case: Parent page is a project tracking page with a summary, deliverables, and detailed requirements.
I want to be able to create a weekly report from Create from Template macro - and include Action Items and Deliverables Status sections (both set as Excerpts) from parent page to this report.
I cannot write User Macro due to Cloud Confluence limitation.
What are my options?
Hey, not for you Lena but I created a custom user macro for this.
## Developed by: Felix Schäfer & Alexander Wirtz
## Date created: 07/12/202
## @noparams
#set($parentId = $pageManager.getPage($content.id).parent.getContentId().asLong())
#set ($requestedPage = $pageManager.getPage($parentId).getTitle())
#if ($parentId)
<ac:macro ac:name="excerpt-include" ac:schema-version="1">
<ac:parameter ac:name="nopanel">true</ac:parameter>
<ac:default-parameter>$requestedPage</ac:default-parameter>
</ac:macro>
#else
Cannot show tasks on parent page because this page has no parent.
#end
I have the same requirement but for confluence server / data center. Did you found a solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If it is for the Cloud version - definitely yes!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, of course!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm working on something to make this possible, but it would probably be a part of a paid add-on (at the lowest price I can set it), along with some other useful features. Would you be interested?
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.