Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/main.jsp
Frederic Debuire 544fbca244 Modification d'article
Ajout d'une image loupe pour le filtre user dans addConference
2008-02-16 19:53:14 +00:00

27 lines
674 B
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title">NO NAME</h4>
<c:choose>
<c:when test="${currentConferenceId != null}">
PAGE ACCUEIL CONFERENCE COURANTE : <b>${currentConference.title}</b>
</c:when>
<c:otherwise>
<authz:authorize ifNotGranted="ROLE_ANONYMOUS">
Choose a conference to access your features:
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.choose" /></a>
</authz:authorize>
<authz:authorize ifAllGranted="ROLE_ANONYMOUS">
PAGE ACCUEIL YACOS (NON CONNECTE)
</authz:authorize>
</c:otherwise>
</c:choose>
</body>
</html>