fix for vivo-127

This commit is contained in:
tworrall 2013-06-12 16:04:42 -04:00
parent f267df494d
commit 3ce6a224a3
4 changed files with 7 additions and 5 deletions

View file

@ -250,6 +250,8 @@ display_has_element_error = There was an error in the system. The display:hasEle
return_to = return to {0} return_to = return to {0}
other = other
# #
# admin templates ( /templates/freemarker/body/admin ) # admin templates ( /templates/freemarker/body/admin )
# #

View file

@ -48,7 +48,7 @@
</section> <!-- individual-intro --> </section> <!-- individual-intro -->
</#if> </#if>
<#assign nameForOtherGroup = "other"> <#-- used by both individual-propertyGroupMenu.ftl and individual-properties.ftl --> <#assign nameForOtherGroup = "${i18n().other}">
<!-- Property group menu or tabs --> <!-- Property group menu or tabs -->
<#-- <#--

View file

@ -2,12 +2,12 @@
<section id="pageList"> <section id="pageList">
<div class="tab"> <div class="tab">
<h2>Page Management</h2> <h2>${i18n().page_management}</h2>
</div> </div>
<#if pages?has_content > <#if pages?has_content >
<table id="pageList" style="margin-bottom:2px"> <caption>Page Management</caption> <table id="pageList" style="margin-bottom:2px"> <caption>${i18n().page_management}</caption>
<thead> <thead>
<tr> <tr>

View file

@ -1,8 +1,8 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ --> <#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for property group menu on individual profile page --> <#-- Template for property group menu on individual profile page nameForOtherGroup! -->
<#assign nameForOtherGroup = nameForOtherGroup!"other"> <#assign nameForOtherGroup = "${i18n().other}">
<#if (propertyGroups.all)??> <#if (propertyGroups.all)??>
<#assign groups = propertyGroups.all> <#assign groups = propertyGroups.all>