@box>
<@boxHeader i18nTitleKey="openagenda.manage_agendas.tableLabel" skipHeader=true boxTools=true>
<@tform type='inline' name='manage_agendas' action='jsp/admin/plugins/openagenda/ManageAgendas.jsp'>
<@button name="view_createAgenda" buttonIcon="calendar-plus" type='submit'>#i18n{openagenda.manage_agendas.buttonAdd}@button>
@tform>
@boxHeader>
<@boxBody>
<@messages infos=infos />
<@table headBody=true>
<@tr>
<@th>#i18n{openagenda.manage_agendas.columnName} #i18n{openagenda.manage_agendas.columnUid}@th>
<@th>#i18n{openagenda.manage_agendas.columnDescription}@th>
<@th>#i18n{portal.util.labelActions}@th>
@tr>
<@tableHeadBodySeparator />
<#list agenda_list as agenda >
<@tr>
<@td>${agenda.name} [ ${agenda.uid} ]@td>
<@td>${agenda.description}@td>
<@td>
<@aButton href="jsp/admin/plugins/openagenda/ManageAgendas.jsp?view=modifyAgenda&id=${agenda.id}" class="btn btn-primary btn-sm">
<@icon style="pencil" /> #i18n{portal.util.labelModify}
@aButton >
<@aButton href="jsp/admin/plugins/openagenda/ManageAgendas.jsp?action=confirmRemoveAgenda&id=${agenda.id}" class="btn btn-danger btn-sm" >
<@icon style="trash" /> #i18n{portal.util.labelDelete}
@aButton >
@td>
@tr>
#list>
@table>
<@paginationAdmin paginator=paginator combo=1 />
@boxBody>
@box>