<@row> <@columns> <@tform action='jsp/admin/DoModifyProperties.jsp'> <@input type='hidden' name='token' value='${token}' /> <@box color='danger'> <@boxHeader title='#i18n{portal.system.modify_properties.boxTitle}' boxTools=true> <@button type='submit' buttonIcon='pencil' title='#i18n{portal.system.modify_properties.buttonLabel}' /> <#list groups_list as group> <@box color='danger'> <@boxHeader title='${group.name}' boxTools=true> <@button style='card-control collapse' buttonIcon='minus' /> <@boxBody>

${group.description}

<#list group.localizedDataList as property> <#if property.help?length > 0> <#assign helpText = property.help> <#else> <#assign helpText = property.key> <@formGroup labelKey=property.label labelFor=property.key helpKey=helpText> <#if property.key?ends_with( ".textblock" )> <@input type='textarea' name=property.key id=property.key>${property.value?html} <#elseif property.key?ends_with( ".htmlblock" )> <@input type='textarea' name=property.key id=property.key class='richtext'>${property.value?html} <#elseif property.key?ends_with( ".checkbox" )> <#if property.value == "1"> <@checkBox name=property.key id=property.key value='1' checked=true /> <#else> <@checkBox name=property.key id=property.key value='1' checked=false /> <@input type='hidden' name='${property.key}' value='0' /> <#else> <@input type='text' name=property.key id=property.key value=property.value?html /> <@formGroup> <@button type='submit' buttonIcon='pencil' title='#i18n{portal.system.modify_properties.buttonLabel}' /> <#include "/admin/util/editor/editor.html" /> <@initEditor />