Confluence:在表中显示 {children}

发布于 2024-12-11 17:49:46 字数 162 浏览 0 评论 0原文

有没有一种方法可以在表格中显示 {children},使其全部位于一列中,每行一个?

假设我有子页面 a、b 和 c,并希望它们显示在包含页面名称、作者和其他内容的表格中:

|a|Denis|40|

|b|亚历克斯|43|

|c|未知|2|

Is there a way to display {children} in a table in a way that they all sit withing a column, one per row?

Say, I have subpages a, b and c, and want them show in a table with page name, author and something else:

|a|Denis|40|

|b|Alex|43|

|c|Unknown|2|

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜妞爱困 2024-12-18 17:49:46

您是否尝试过报告插件

结账
http://wiki.customware.net/repository/display/AtlassianPlugins/Reporting+Plugin

例如使用下面的配置

{report-table}

{local-reporter:page:children}
{text-sort:page:title}
{local-reporter}

{report-column:title=Title}{report-info:page:title}{report-column}
{report-column:title=Author}{report-info:page:creator}{report-column}

{report-table}

一旦你开始使用它就会很有趣。

弗朗西斯

Did you try the reporting plugin

checkout
http://wiki.customware.net/repository/display/AtlassianPlugins/Reporting+Plugin

for instance use following config

{report-table}

{local-reporter:page:children}
{text-sort:page:title}
{local-reporter}

{report-column:title=Title}{report-info:page:title}{report-column}
{report-column:title=Author}{report-info:page:creator}{report-column}

{report-table}

Quite a bit of fun using it, once that you get going.

Francis

合约呢 2024-12-18 17:49:46

您还可以使用 {metadata-report}

    {metadata-report:Page,Author}

{metadata-report } 用于使用 元数据显示存储在页面上的元数据插件,还可用于显示内容属性,包括:页面、作者、上次更改者、上次更改时间、日期、时间、创建时间、发布、空间、父级

您还可以设置根页面开始并将所有基本页面元数据提取到表中。示例:

    {metadata-report:Page,Author,Last Changed By,Last Time Changed,Date,Time,Time Created,Posted,Space,Parent|root=somepagewithchildren|pages=@descendants} 

可以将其包装在 {table-filter}{table-plus} 宏中进行排序。

{table-filter:userfilter=Page,Author,Time Created} 
{table-plus:columnTypes=S,S,D"dd MMM, yyyy hh:mm"} 
{metadata-report:Page,Author,Time Created} 
{table-plus} 
{table-filter}

You could also use {metadata-report}

    {metadata-report:Page,Author}

{metadata-report} is used to display metadata stored on pages using the Metadata plugin and can also be used to dislay content properties including: Page,Author,Last Changed By,Last Time Changed,Date,Time,Time Created,Posted,Space,Parent

You can also set the root page to start from and pull all of the basic page metadata out into a table. Example:

    {metadata-report:Page,Author,Last Changed By,Last Time Changed,Date,Time,Time Created,Posted,Space,Parent|root=somepagewithchildren|pages=@descendants} 

This can be wrapped in {table-filter} and {table-plus} macros for sorting.

{table-filter:userfilter=Page,Author,Time Created} 
{table-plus:columnTypes=S,S,D"dd MMM, yyyy hh:mm"} 
{metadata-report:Page,Author,Time Created} 
{table-plus} 
{table-filter}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文