vitro/webapp/web/templates/freemarker/body/menuN3Edit.ftl

26 lines
935 B
Text
Raw Normal View History

<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<div id="navigationManagement">
<h2>Navigation Management</h2>
<#if errorMessage??>
2011-01-13 14:31:51 +00:00
<div id="errorAlert">
<img src="../images/iconAlert.png" alert="Error alert icon" height="31" width="32">
<p>${errorMessage}</p>
</div>
</#if>
<#if message??>
2011-01-13 14:31:51 +00:00
<p>${message}</p>
</#if>
<#if menuN3??>
2011-01-13 14:31:51 +00:00
<form class="" action="${urls.base}/${currentPage}" method="post">
<label for="navigatioN3">Setup the primary navigational menu for your website</label>
<textarea name="navigationN3" id="navigationN3" cols="45" rows="40" class="maxWidth">
${menuN3}
</textarea>
<input name="submit" id="submit" value="Save" type="submit"/> or <a href="${urls.base}${cancelUrl}">Cancel</a>
2011-01-13 14:31:51 +00:00
</form>
</#if>
</div>