NIHVIVO-736 Fix JSP syntax errors, introduced by previous changes.
This commit is contained in:
parent
a490d44617
commit
0ff41b8ac8
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
<%-- $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$ --%>
|
||||||
|
|
||||||
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.EDITOR) { %>
|
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.EDITOR)) { %>
|
||||||
<div class="pageBodyGroup">
|
<div class="pageBodyGroup">
|
||||||
|
|
||||||
<h3>Data Input</h3>
|
<h3>Data Input</h3>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<%-- $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$ --%>
|
||||||
|
|
||||||
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.CURATOR) { %>
|
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.CURATOR)) { %>
|
||||||
<div class="pageBodyGroup">
|
<div class="pageBodyGroup">
|
||||||
|
|
||||||
<h3>Site Configuration</h3>
|
<h3>Site Configuration</h3>
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<li><a href="listTabs?home=<%=portal.getPortalId()%>">Tab management</a></li>
|
<li><a href="listTabs?home=<%=portal.getPortalId()%>">Tab management</a></li>
|
||||||
|
|
||||||
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.DBA) { %>
|
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.DBA)) { %>
|
||||||
<li><a href="listUsers?home=<%=portal.getPortalId()%>">User accounts</a></li>
|
<li><a href="listUsers?home=<%=portal.getPortalId()%>">User accounts</a></li>
|
||||||
<% } %>
|
<% } %>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Add table
Reference in a new issue