create_role.html
1 <#include "manageappcenter_tabs.html" />
2 <@tabs2 tab="role" />
3 <@box>
4 <@boxHeader title='#i18n{appcenter.create_role.title}' />
5 <@boxBody>
6 <@tform name='create_role' action='jsp/admin/plugins/appcenter/ManageRoles.jsp'>
7
8 <@messages errors=errors />
9 <input type="hidden" id="id" name="id"/>
10
11 <@formGroup labelKey='#i18n{appcenter.create_role.labelCode}' helpKey='#i18n{appcenter.create_role.labelCode.help}' mandatory=true>
12 <@input type='text' name='code' value='${role.code!\'\'}' />
13 </@formGroup>
14 <@formGroup labelKey='#i18n{appcenter.create_role.labelLabel}' helpKey='#i18n{appcenter.create_role.labelLabel.help}' mandatory=true>
15 <@input type='text' name='label' value='${role.label!\'\'}' />
16 </@formGroup>
17
18 <@actionButtons button1Name="action_createRole" button2Name="view_manageRole"/>
19 </@tform>
20 </@boxBody>
21 </@box>