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>Display the creation date of the current Confluence page
Allow users to retrieve all pages from the current space despite the 250-page limit per request
Display Confluence page edit and view restrictions to provide essential permission details, including users, groups, and inherited access
Generate IDs in Base32 format
Display an overview of all pages in a space, including title, version, and last updated date
Insert a page break in documents generated from a Confluence page
Perform text searches within pages, blog posts, and attachments
Retrieve and display all page content properties in an AUI sortable table
Show worklogs from Jira issues
Find images within page attachments. Handy for reusing files and updating them all at once.