choose conf icone
manage article checkbox enleve remember me pas logué afficher que le 3eme filtre
This commit is contained in:
@@ -69,8 +69,11 @@
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="7%">Show</td>
|
||||
<td width="93%"><input id="register" type="checkbox" name="register" value="Register" onchange="ShowRegistered()" checked="checked"> Conference you are registered in<br />
|
||||
<input id="notregister" type="checkbox" name="notregister" value="NotRegister" onchange="ShowNotRegistered()" checked="checked"> Conference you are not registered in<br />
|
||||
<td width="93%">
|
||||
<authz:authorize ifNotGranted="ROLE_ANONYMOUS">
|
||||
<input id="register" type="checkbox" name="register" value="Register" onchange="ShowRegistered()" checked="checked"> Conference you are registered in<br />
|
||||
<input id="notregister" type="checkbox" name="notregister" value="NotRegister" onchange="ShowNotRegistered()" checked="checked"> Conference you are not registered in<br />
|
||||
</authz:authorize>
|
||||
<input id="ongoing" type="checkbox" name="ongoing" value="Upcoming" onchange="ShowOngoing()" checked="checked"> Only upcoming conferences<br />
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -49,10 +49,14 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">
|
||||
<!--
|
||||
<fmt:message key='login.label.rememberme' />
|
||||
-->
|
||||
</td>
|
||||
<td align="left">
|
||||
<!--
|
||||
<input type="checkbox" name="_acegi_security_remember_me"/>
|
||||
-->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
@@ -101,6 +101,9 @@
|
||||
<a href="<c:url value="userBoard.htm"/>"><fmt:message key="home.link.userBoard" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<center><a href="<c:url value="listConference.htm"/>" class="chooseConferenceLink">
|
||||
Please choose a conference
|
||||
</a></center>
|
||||
</authz:authorize>
|
||||
<authz:authorize ifAllGranted="ROLE_ANONYMOUS">
|
||||
<!-- Main page for Yacos.com -->
|
||||
|
||||
@@ -34,48 +34,52 @@
|
||||
|
||||
<div id="articleDetails${i.index}" style="display: none;">
|
||||
<table width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<ul>
|
||||
<li>
|
||||
<h2>Secondary Authors:</h2>
|
||||
<ul>
|
||||
<c:forEach var="sAuthor" items="${article.secondaryAuthors}">
|
||||
<li><b>${sAuthor}</b></li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h2>Topic:</h2>
|
||||
<b>${article.topic}</b>
|
||||
</li>
|
||||
<li>
|
||||
<h2>Abstract :</h2>
|
||||
${article.abstractText}
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<a class="manage_link" id="articleURL${i.index}" title="Download" href="<c:url value="/download.htm"><c:param name="articleId" value="${article.id}"/></c:url>">Download<img src="./images/cc-download_manager-32x32.png" alt="Download" /></a>
|
||||
<c:if test="${article.state != 'EVALUATED' and article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
||||
<a class="manage_link" id="modifyArticle${i.index}" title="Modify" href="<c:url value="/submissionArticle.htm"><c:param name="action" value="modify"/><c:param name="articleID" value="${article.id}"/></c:url>">Modify<img src="./images/cc-kedit-32x32.png" alt="Modify" /></a>
|
||||
<a class="manage_link" id="suppressArticle${i.index}" title="Delete" href="javascript:deleteArticle(${article.id});">Delete<img src="./images/cc-button_cancel-32x32.png" alt="Delete"/></a>
|
||||
</c:if>
|
||||
<tr>
|
||||
<td rowspan="3" width="75%">
|
||||
<b>Secondary Authors:</b>
|
||||
<c:forEach var="sAuthor" items="${article.secondaryAuthors}">
|
||||
${sAuthor},
|
||||
</c:forEach>
|
||||
<br /><br />
|
||||
<b>Topic : </b>
|
||||
${article.topic}
|
||||
<br /><br />
|
||||
<b>Abstract : </b>
|
||||
${article.abstractText}
|
||||
</td>
|
||||
<td align="right" width="25%">
|
||||
<a class="manage_link" id="articleURL${i.index}" title="Download" href="<c:url value="/download.htm"><c:param name="articleId" value="${article.id}"/></c:url>">
|
||||
Download<img src="./images/cc-download_manager-32x32.png" alt="Download" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" width="25%">
|
||||
<c:choose>
|
||||
<c:when test="${article.state == 'EVALUATED' or article.state == 'REJECTED' or article.state == 'ACCEPTED'}">
|
||||
<br/><a href="<c:url value="listReportAuthor.htm?id=${article.id}"/>"><fmt:message key="validate.report" /></a>
|
||||
<a href="<c:url value="listReportAuthor.htm?id=${article.id}"/>">
|
||||
<fmt:message key="validate.report" />
|
||||
</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
|
||||
<a class="manage_link" id="modifyArticle${i.index}" title="Modify" href="<c:url value="/submissionArticle.htm"><c:param name="action" value="modify"/><c:param name="articleID" value="${article.id}"/></c:url>">
|
||||
Modify<img src="./images/cc-kedit-32x32.png" alt="Modify" />
|
||||
</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</c:choose>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" width="25%">
|
||||
<c:if test="${article.state != 'EVALUATED' and article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
||||
<a class="manage_link" id="suppressArticle${i.index}" title="Delete" href="javascript:deleteArticle(${article.id});">
|
||||
Delete<img src="./images/cc-button_cancel-32x32.png" alt="Delete"/>
|
||||
</a>
|
||||
</c:if>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
</c:forEach>
|
||||
|
||||
BIN
YACOSWeb/WebContent/images/ti-text-html-128x128.png
Normal file
BIN
YACOSWeb/WebContent/images/ti-text-html-128x128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@@ -12,7 +12,9 @@
|
||||
<br />
|
||||
<a href="login.htm" id="connexion"><fmt:message key="login.label.register"/></a>
|
||||
|
||||
<fmt:message key='login.label.rememberme' /> <input type="checkbox" name="_acegi_security_remember_me"/>
|
||||
<!--
|
||||
<fmt:message key='login.label.rememberme' /> <input type="checkbox" name="_acegi_security_remember_me"/>
|
||||
-->
|
||||
<script type="text/javascript"> new LoginManager('username', 'password');</script>
|
||||
</form>
|
||||
</body>
|
||||
|
||||
@@ -330,6 +330,23 @@ a.submit_link:hover{
|
||||
color: #003e82;
|
||||
}
|
||||
|
||||
a.chooseConferenceLink{
|
||||
background: url(../images/ti-text-html-128x128.png) no-repeat center top;
|
||||
color: #008281;
|
||||
text-align: center;
|
||||
padding-top: 128px;
|
||||
width: 130px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
a.chooseConferenceLink:hover{
|
||||
color: #003e82;
|
||||
}
|
||||
|
||||
a.forgot_pwd {
|
||||
text-decoration: none;
|
||||
font-size: smaller;
|
||||
|
||||
Reference in New Issue
Block a user