Add check for research to eliminate awkward heading when there is none

This commit is contained in:
tlw72 2011-01-17 16:02:38 +00:00
parent 16b1067363
commit 0cf2822237

View file

@ -15,8 +15,11 @@
</#if>
<#assign noDataNotification>
<h3>There are currently no ${page.title?lower_case} in the system</h3>
<#if page.title?contains("Research") >
<h3>There is currently no ${page.title?lower_case} in the system</h3>
<#else>
<h3>There are currently no ${page.title?lower_case} in the system</h3>
</#if>
<#if !user.loggedIn>
<p>Please <a href="${urls.login}" title="log in to manage this site">log in</a> to manage content.</p>
</#if>