Project Content
Project List Plugin
Plugin to display the complete list of projects accessible by the current user.
[{ProjectList}]
The projects listed can filtered by using the following optional parameters:
• id='<comma-separated list of project ids>'
• name='<regexp>'
• category='<regexp>'
Filtering rules:
• If the id parameter is specified, then name and category will be ignored.
• name and category filters can be used together, and their result sets will be joined by OR.
In addition, the output format can be specified: format='name|brief|full'
• name: name is the visible only column (default)
• brief: name, members and created.
• full: most details
Usage examples:
[{ProjectList id='12,1'}]
displays the projects with identifiers 12 and 1.
[{ProjectList name='Test.*' format='brief'}]
will display all projects with names starting with Test in brief format.