Changement du tableau de bord pour l'user.

This commit is contained in:
Frederic Debuire
2008-02-19 18:40:35 +00:00
parent 448bcf60c2
commit e9e3a6f992
6 changed files with 179 additions and 127 deletions

View File

@@ -0,0 +1,54 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head>
</head>
<body>
<h4 class="title">User Board</h4>
<h3 class="descriptionTitle">Generals informations</h3>
<div class="textBox">
You currently follow <b>${numberConference}</b> conference(s)<br /><br />
If you want to see the list of conferences you are registered in, click here.
</div>
<h3 class="descriptionTitle">Chairman's informations</h3>
<div class="textBox">
You are Chairman in <b>${numberChairman}</b> conference(s)<br /><br />
<c:choose>
<c:when test="${numberCreationTokens} != 0">
You can create <b>${numberCreationTokens}</b> conference(s). Click
<a href="addConference.htm">here</a> to create one now.
</c:when>
<c:otherwise>
You can't create a conference at the moment. If you want to create a conference, you should address to the <a href="mailto:admin@yacos.org">administrator</a> of this site.
</c:otherwise>
</c:choose>
</div>
<h3 class="descriptionTitle">PCMember's informations</h3>
<div class="textBox">
You are PCMember in <b>${numberPCMember}</b> conference(s)<br /><br />
</div>
<h3 class="descriptionTitle">Referee's informations</h3>
<div class="textBox">
You are Referee in <b>${numberReferee}</b> conference(s)<br /><br />
</div>
<h3 class="descriptionTitle">Author's informations</h3>
<div class="textBox">
You are Author in <b>${numberAuthor}</b> conference(s)<br /><br />
You have posted <b>${numberArticle}</b> article(s).<br /><br />
If you want to see the list of articles you have submited, click here.
</div>
</body>
</html>