Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,482
Community Members
 
Community Events
184
Community Groups

Show a pages parent

Edited

Hi I get one Question pretty frequently from clients and so far I had no answer to them.
Is it possible to show a pages parent on a certain page, like in a page property using Scriptrunner with the "CQL Search" Makro. 

These clients typically want all fields filled on a certain page in case they print the page and it should include all context. Or have a large page properties list where they can list for everything. 

Are you guys aware of and CQL Query that lists the pages parent page or even the one above. 
I've been through this page, tried many things and found no solution for it. https://developer.atlassian.com/server/confluence/advanced-searching-using-cql/

Just the standard list all child pages of a certain page. 
I'm sure there must be a way to display that the other way round. 

*edit
I think i need to elaborate more with a concrete example

Let me explain using this image of a page tree: Bildschirmfoto 2022-02-18 um 15.35.29.jpg

I'm on Page "Dokumentenebene". I would like to display the name of its parent on the Page.
Level: "Zwischenebene A"

And Ideally even one level above that (The parents parent). So that I can have a nice Table saying

Family: "Process family A"
Level: "Zwischenebene A".

 

Hope that makes sense. 

2 answers

0 votes
Nicolai Sibler
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Feb 21, 2022

Hi @Antal Vig ,

there's a user macro for a clickable link to the parent page:

## @noparams
#
if (!$content.getParent()) <b>No parent page found</b>
#
else
#contentLink2($content.getParent() false false)
#end

Someone with more coding skills than me could modify this macro to get the parent's parent page ...

 

Kind regards,

Nicolai

0 votes
Pramodh M
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Feb 17, 2022

Hi @Antal Vig 

When you place the page tree macro it lists down the pages at the root level in space. (It also has expand option to see the child pages)

Other than that with API, you can get the list of pages at the root level in your space 

https://developer.atlassian.com/cloud/confluence/rest/api-group-content---children-and-descendants/#api-wiki-rest-api-content-id-child-get

This will surely list the pages at the root level

Let me know if you have any queries

Thanks,

Pramodh

Thank you @Pramodh M 
I actually need it the other way round. 

Let me explain using this image of a page tree: Bildschirmfoto 2022-02-18 um 15.35.29.jpg

I'm on Page "Dokumentenebene". I would like to display the name of its parent on the Page.
Level: "Zwischenebene A"

And Ideally even one level above that (The parents parent). So that I can have a nice Table saying

Family: "Processfamily A"
Level: "Zwischenebene A".

 

Hope that makes sense. 

Did you find a solution for that, @Antal Vig ?

@Dirk Spannaus We tried that usermakro above for that but at the end we didn't used it as the client didn't needed that much as they originally thought :D 

## @noparams 
#if ($content.getType() == "page")
#foreach ($ancestorPage in $content.getAncestors())
$ancestorPage.getTitle()
#end
#end
Like Dirk Spannaus likes this

I found out in between, that we can't use user macros in the cloud version 😤

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events