mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-08 10:34:25 +00:00
JSPUI: show Recent Submission header only iff there are recent submissions
This commit is contained in:
@@ -364,7 +364,7 @@
|
|||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
<%
|
<%
|
||||||
if (rs != null)
|
if (rs != null && rs.count() > 0)
|
||||||
{
|
{
|
||||||
%>
|
%>
|
||||||
<h3><fmt:message key="jsp.collection-home.recentsub"/></h3>
|
<h3><fmt:message key="jsp.collection-home.recentsub"/></h3>
|
||||||
|
@@ -104,7 +104,7 @@
|
|||||||
<p class="copyrightText"><%= copyright %></p>
|
<p class="copyrightText"><%= copyright %></p>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<%
|
<%
|
||||||
if (rs != null)
|
if (rs != null && rs.count() > 0)
|
||||||
{ %>
|
{ %>
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<div class="panel panel-primary">
|
<div class="panel panel-primary">
|
||||||
|
Reference in New Issue
Block a user