From: jreichen <jre...@us...> - 2011-01-25 04:30:15
|
Update of /cvsroot/sageplugins/webapp/WebContent/m In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7650/WebContent/m Modified Files: recordings.jsp Log Message: - Show message on recordings page if no recordings exist Index: recordings.jsp =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/m/recordings.jsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** recordings.jsp 5 Nov 2010 03:08:01 -0000 1.3 --- recordings.jsp 25 Jan 2011 04:30:07 -0000 1.4 *************** *** 24,28 **** </head> <body> ! <jsp:include page="/WEB-INF/jspf/m/header.jspf"> <jsp:param name="pageTitle" value="${pageTitle}" /> --- 24,28 ---- </head> <body> ! <jsp:include page="/WEB-INF/jspf/m/header.jspf"> <jsp:param name="pageTitle" value="${pageTitle}" /> *************** *** 55,58 **** --- 55,72 ---- </c:if> + <c:if test="${empty recordings}"> + <div class="content"> + <div class="simplemessage"> + <c:if test="${empty param.Title}"> + There are no recordings. + </c:if> + <c:if test="${!empty param.Title}"> + There are no recordings of "${param.Title}". + </c:if> + </div> + </div> + </c:if> + + <c:if test="${!empty recordings}"> <div class="content"> <form method="post" action="${cp}/m/Command"> *************** *** 152,155 **** --- 166,170 ---- </form> </div> + </c:if> <jsp:include page="/WEB-INF/jspf/m/footer.jspf"/> |