I want to create a status log using table-data.
This is what my table looks like:
{table-data:Entries|order=descending}
|| Date || Reporter || Tool || Status || Notes || Attachment || CM ||
| {date-data:DateTime\|format=yyyy-MMM-dd HH:mm}now{date-data} | {list-data:Reporter}{user-options:match=all|default=@self}{user-options}{list-data} | {list-data:Tool\|required=true}{list-option}Bamboo{list-option}{list-option}Confluence{list-option}{list-option}Crucible{list-option}{list-option}Fisheye{list-option}{list-option}Git{list-option}{list-option}IM{list-option}{list-option}JIRA{list-option}{list-option}Nexus{list-option}{list-option}Subversion{list-option}{list-option}Other{list-option}{list-data} | {list-data:Status\|required=true}{list-option:label=Broken}(x){list-option}{list-option:label=Not Sure}(!){list-option}{list-option:Label=Fixed}(/){list-option}{list-data} | {text-data:Notes\|type=area\|width=300px\|height=150px}{text-data} | {attachment-data:Attachment} | {list-data:CM\|required=true}{list-option}New{list-option}{list-option}Investigating{list-option}{list-data}|
{table-data}
I'd like to use the reporting plugin and show just the last entry for a given tool. So I tried something like:
{report-table}
{local-reporter:data:Entries}
{text-filter:data:Tool|include=Bamboo}
{local-reporter}
{report-column:title=Tool}{report-info:data:Tool}{report-column}
{report-column:title=Status}{report-info:data:Status|render=wiki}{report-column}
{report-table}
Is there a way to just show the last entry in the list returned?
Hi Justin,
You can use the MaxResults parameter to limit the number of entries to be returned. You might want to include a date-sort too,
http://wiki.customware.net/repository/display/AtlassianPlugins/report-table
{report-table}
{report-block:maxResults=1}
{local-reporter:data:Entries}
{text-filter:data:Tool|include=Bamboo}
{date-sort:data:DateTime|order=descending}
{local-reporter}
{report-body:injected=true}
{metadata:Bamboo|hidden=true}%data:Status%{metadata}
{report-body}
{report-empty}
{metadata:Bamboo|hidden=true}(/){metadata}
{report-empty}
{report-block}
{report-table}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, I used this answer in conjunction with the metadata plugin then constructed my summary table.
||Tool||Status||Version||Upgrade Plans||
|Bamboo|{metadata-from:@self|Bamboo}|3.1.1| |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.