27 lines
674 B
Plaintext
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>
|