#include "managebots_tabs.html" />
<@tabs2 tab="recastbot" />
<@box>
<@boxHeader title='#i18n{recastbots.manage_recastbot.title}' boxTools=true>
<@tform class='form-inline pull-right' name='manage_recastbot' action='jsp/admin/plugins/recastbots/ManageRecastBots.jsp'>
<@button type='submit' name='view_createRecastBot' buttonIcon='plus' title='#i18n{recastbots.manage_recastbots.buttonAdd}' />
@tform>
@boxHeader>
<@boxBody>
<@messages infos=infos />
<@paginationAdmin paginator=paginator combo=1 />
<@table>
#i18n{recastbots.manage_recastbots.columnBotKey} |
#i18n{recastbots.manage_recastbots.columnName} |
#i18n{recastbots.manage_recastbots.columnDescription} |
#i18n{recastbots.manage_recastbots.columnStandalone} |
#i18n{recastbots.manage_recastbots.columnAvatarUrl} |
#i18n{recastbots.manage_recastbots.columnLanguage} |
#i18n{recastbots.manage_recastbots.columnBotStatus} |
#i18n{recastbots.manage_recastbots.columnToken} |
#i18n{portal.util.labelActions} |
<@tableHeadBodySeparator />
<#list recastbot_list as recastbot >
${recastbot.botKey}
|
${recastbot.name}
|
${recastbot.description}
|
<#if recastbot.standalone != 0 >
#i18n{recastbots.mode.standalone}
<#else>
#i18n{recastbots.mode.standard}
#if>
|
${recastbot.avatarUrl}
|
${recastbot.language}
|
<#if recastbot.botStatus = 0>
#i18n{recastbots.bot_status.disabled}
<#else>
#i18n{recastbots.bot_status.enabled}
#if>
|
${recastbot.token}
|
<@aButton href='jsp/admin/plugins/recastbots/ManageRecastBots.jsp?view=modifyRecastBot&id=${recastbot.id}' title='#i18n{portal.util.labelModify}' buttonIcon='pencil' showTitle=false />
<@aButton href='jsp/admin/plugins/recastbots/ManageRecastBots.jsp?action=confirmRemoveRecastBot&id=${recastbot.id}' title='#i18n{portal.util.labelDelete}' buttonIcon='trash' color='btn-danger' showTitle=false />
|
#list>
@table>
<@paginationAdmin paginator=paginator />
@boxBody>
@box>