#include "manageproject_tabs.html" />
<@tabs2 tab="project" />
<@box>
<@boxHeader title='#i18n{example.manage_project.title}' boxTools=true>
<@tform class='form-inline pull-right' name='manage_project' action='jsp/admin/plugins/example/ManageProjects.jsp'>
<@button type='submit' name='view_createProject' buttonIcon='plus' title='#i18n{example.manage_projects.buttonAdd}' />
@tform>
@boxHeader>
<@boxBody>
<@messages infos=infos />
<@paginationAdmin paginator=paginator combo=1 />
<@table>
#i18n{example.manage_projects.columnName} |
#i18n{example.manage_projects.columnDescription} |
#i18n{example.manage_projects.columnImageUrl} |
#i18n{portal.util.labelActions} |
<@tableHeadBodySeparator />
<#list project_list as project >
${project.name}
|
${project.description}
|
${project.imageUrl}
|
<@aButton href='jsp/admin/plugins/example/ManageProjects.jsp?view=modifyProject&id=${project.id}' title='#i18n{portal.util.labelModify}' buttonIcon='pencil' showTitle=false />
<@aButton href='jsp/admin/plugins/example/ManageProjects.jsp?action=confirmRemoveProject&id=${project.id}' title='#i18n{portal.util.labelDelete}' buttonIcon='trash' color='btn-danger' showTitle=false />
|
#list>
@table>
<@paginationAdmin paginator=paginator />
@boxBody>
@box>