This macro generates a table that displays information about the current Confluence space, including its type, status, and creation date. It also provides links to the space summary, permissions, and calendar. The data is populated dynamically using space variables like $space.name, $space.type, and $space.createdAt.
#set ($format = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
<table class="aui aui-table-list">
<thead>
<tr>
<th colspan="6">$space.name space</th>
</tr>
<tr>
<th>Type</th>
<th>Status</th>
<th>Created</th>
<th colspan="3">Links</th>
</tr>
</thead>
<tbody>
<tr>
<td>$space.type</td>
<td><span class="aui-lozenge aui-lozenge-subtle aui-lozenge-success">$space.status</span></td>
<td>$DateUtils.parseDate($space.createdAt, $format)</td>
<td><a href="$baseUrl/spaces/viewspacesummary.action?key=$space.key">details</a></td>
<td><a href="$baseUrl/spaces/spacepermissions.action?key=$space.key">permissions</a></td>
<td><a href="$baseUrl/spaces/$space.key/calendars">calendar</a></td>
</tr>
</tbody>
</table>Shows page creation date
This macro allows user to retrieve all pages from current space despite limitation of 250 pages per request
Display page edit and view restrictions in Confluence to get essential permission details, including users, groups, and inherited access.
Display information about how many users have access to each space
Macro for generating ID in base32 format
Perform text searches within pages, blog posts, and attachments.
An overview of all pages within one space which contains the title, the version, and the last updated date
Shows worklogs from the Jira issue
Find image within page attachments. Handy for reuse files and update them all at once
Read and display the fixed version of Confluence pages by checking page or ancestor labels