I have bunch of pages, designed on live-template. I would like to create report, which give me pages with no attachment included. Attachments are included using {attachment-data} macro.
I've tried to find out filter on {attachment-data}, bud did not found any.
is there any way to do this?
thanks,
Andrew
The following gives you the list of all pages in a space, ordered by length of the list of attachments (in characters). So, those with 0 attachments start at the top. I tried to filter by the length of the attachment list and could not get that to work. The scope of the page search can be controlled by the content reporter such that you only list descendants or children of a parent.
h2. Pages, sorted by attachments (0 attachments first)
{report-block}
{content-reporter:space=YOURSPACEHERE|types=+page}
{text-sort:content:attachments|order=descending}
{content-reporter}
{report-body}> {report-info:page:title|link=true} = {report-info:content:attachments}\\
{report-body}
{report-block}
{anchor:comment1 the following does not seem to work in the content reporter above. text-filter:content:attachments|maxLength=10 }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.