<@row> <@columns> <@box> <@boxHeader title='#i18n{document.manage_category.boxTitle}'> <@tform method='post' action='jsp/admin/plugins/document/CreateCategory.jsp'> <@button type='submit' title='#i18n{document.manage_category.buttonLabelCreate}' buttonIcon='plus-square' size='sm' hideTitle=['xs','sm'] /> <@boxBody> <@table> <@tr> <@th>#i18n{document.manage_category.columnTitleName} <@th>#i18n{document.manage_category.columnTitleDescription} <@th>#i18n{document.manage_category.columnTitleCountLinkedDocuments} <@th>#i18n{document.manage_category.columnTitleActions} <#if category_list?has_content > <#list category_list as categoryDisplay > <@tr> <@td>${(categoryDisplay.category).name} ${(categoryDisplay.category).name} <@td>${(categoryDisplay.category).description!} <@td>${categoryDisplay.countLinkedDocuments!} <@td> <@aButton href='jsp/admin/plugins/document/ModifyCategory.jsp?category_id=${(categoryDisplay.category).id}' title='#i18n{portal.util.labelModify}' buttonIcon='edit' size='sm' hideTitle=['all'] /> <@aButton href='jsp/admin/plugins/document/RemoveCategory.jsp?category_id=${(categoryDisplay.category).id}' title='#i18n{portal.util.labelDelete}' buttonIcon='trash' color='danger' size='sm' hideTitle=['all'] />