userboard table list article
This commit is contained in:
@@ -145,11 +145,22 @@ function showArticleReferee() {
|
|||||||
|
|
||||||
<div id="articleList" style="display: none;">
|
<div id="articleList" style="display: none;">
|
||||||
<table width="100%" align="center">
|
<table width="100%" align="center">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr bgcolor="#FFCE64">
|
||||||
|
<td align="center" width="25%">Title</td>
|
||||||
|
<td align="center" width="10%">State</td>
|
||||||
|
<td align="center" width="45%">Conference</td>
|
||||||
|
<td align="center" width="20%">Download</td>
|
||||||
|
</tr>
|
||||||
<c:forEach var="article" items="${listAllArticle}" varStatus="i">
|
<c:forEach var="article" items="${listAllArticle}" varStatus="i">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" width="25%">${article.title}</td>
|
<td align="left">
|
||||||
<td align="center" width="25%">
|
<span title="${article.title }">${fn:substring(article.title, 0, 40)}
|
||||||
|
<c:if test="${fn:length(article.title) > 41}">
|
||||||
|
...
|
||||||
|
</c:if></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
<c:if test="${article.state == 'SUBMITED'}">
|
<c:if test="${article.state == 'SUBMITED'}">
|
||||||
Submitted
|
Submitted
|
||||||
</c:if>
|
</c:if>
|
||||||
@@ -163,10 +174,15 @@ function showArticleReferee() {
|
|||||||
Accepted
|
Accepted
|
||||||
</c:if>
|
</c:if>
|
||||||
</td>
|
</td>
|
||||||
<td align="center" width="25%">
|
<td align="left">
|
||||||
<a href="chooseConference.htm?idConf=${article.conference.id}">${article.conference.title}</a>
|
<a href="chooseConference.htm?idConf=${article.conference.id}" title="${article.conference.title }">
|
||||||
|
${fn:substring(article.conference.title, 0, 45)}
|
||||||
|
<c:if test="${fn:length(article.conference.title) > 46}">
|
||||||
|
...
|
||||||
|
</c:if>
|
||||||
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td align="center" width="25%">
|
<td>
|
||||||
<a class="manage_link" id="articleURL" 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>
|
<a class="manage_link" id="articleURL" 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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -216,35 +232,51 @@ function showArticleReferee() {
|
|||||||
|
|
||||||
|
|
||||||
<div id="articleListReferee" style="display: none;">
|
<div id="articleListReferee" style="display: none;">
|
||||||
<table width="100%" align="center">
|
<table width="100%" align="center">
|
||||||
<tbody>
|
<tr bgcolor="#FFCE64">
|
||||||
<c:forEach var="article" items="${listArticleReferee}" varStatus="i">
|
<td align="center" width="25%">Title</td>
|
||||||
<tr>
|
<td align="center" width="10%">State</td>
|
||||||
<td align="center" width="25%">${article.title}</td>
|
<td align="center" width="45%">Conference</td>
|
||||||
<td align="center" width="25%">
|
<td align="center" width="20%">Download</td>
|
||||||
<c:if test="${article.evaluated == false}">
|
</tr>
|
||||||
<c:if test="${article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
<tbody>
|
||||||
To evaluate
|
<c:forEach var="article" items="${listArticleReferee}" varStatus="i">
|
||||||
</c:if>
|
<tr>
|
||||||
</c:if>
|
<td align="left">
|
||||||
<c:if test="${article.evaluated == true}">
|
<span title="${article.title }">${fn:substring(article.title, 0, 40)}
|
||||||
<c:if test="${article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
<c:if test="${fn:length(article.title) > 41}">
|
||||||
Evaluated
|
...
|
||||||
</c:if>
|
</c:if></span>
|
||||||
</c:if>
|
</td>
|
||||||
<c:if test="${article.state == 'REJECTED'}">
|
<td>
|
||||||
Rejected
|
<c:if test="${article.evaluated == false}">
|
||||||
</c:if>
|
<c:if test="${article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
||||||
<c:if test="${article.state == 'ACCEPTED'}">
|
To evaluate
|
||||||
Accepted
|
</c:if>
|
||||||
</c:if>
|
</c:if>
|
||||||
</td>
|
<c:if test="${article.evaluated == true}">
|
||||||
<td align="center" width="25%">
|
<c:if test="${article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
||||||
<a href="chooseConference.htm?idConf=${article.conference.id}">${article.conference.title}</a>
|
Evaluated
|
||||||
</td>
|
</c:if>
|
||||||
<td align="center" width="25%">
|
</c:if>
|
||||||
<a class="manage_link" id="articleURL" 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 == 'REJECTED'}">
|
||||||
</td>
|
Rejected
|
||||||
|
</c:if>
|
||||||
|
<c:if test="${article.state == 'ACCEPTED'}">
|
||||||
|
Accepted
|
||||||
|
</c:if>
|
||||||
|
</td>
|
||||||
|
<td align="left">
|
||||||
|
<a href="chooseConference.htm?idConf=${article.conference.id}" title="${article.conference.title }">
|
||||||
|
${fn:substring(article.conference.title, 0, 45)}
|
||||||
|
<c:if test="${fn:length(article.conference.title) > 46}">
|
||||||
|
...
|
||||||
|
</c:if>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="manage_link" id="articleURL" 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>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</tbody>
|
</tbody>
|
||||||
@@ -293,21 +325,32 @@ function showArticleReferee() {
|
|||||||
|
|
||||||
|
|
||||||
<div id="articleListPcMember" style="display: none;">
|
<div id="articleListPcMember" style="display: none;">
|
||||||
<table width="100%" align="center">
|
<table width="100%" align="center">
|
||||||
|
<tr bgcolor="#FFCE64">
|
||||||
|
<td align="center" width="25%">Title</td>
|
||||||
|
<td align="center" width="20%">Delegated to...</td>
|
||||||
|
<td align="center" width="10%">State</td>
|
||||||
|
<td align="center" width="25%">Conference</td>
|
||||||
|
<td align="center" width="20%">Download</td>
|
||||||
|
</tr>
|
||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="article" items="${listArticlePCMember}" varStatus="i">
|
<c:forEach var="article" items="${listArticlePCMember}" varStatus="i">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" width="25%">${article.title}</td>
|
<td align="left">
|
||||||
<td align="center" width="25%">
|
<span title="${article.title }">${fn:substring(article.title, 0, 30)}
|
||||||
|
<c:if test="${fn:length(article.title) > 31}">
|
||||||
|
...
|
||||||
|
</c:if></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
<c:choose>
|
<c:choose>
|
||||||
<c:when test="${not empty article.referee}">
|
<c:when test="${not empty article.referee}">
|
||||||
Delegated to:<br />
|
|
||||||
<c:forEach var="referee" items="${article.referee}">
|
<c:forEach var="referee" items="${article.referee}">
|
||||||
${referee.firstName} ${referee.lastName}<br/>
|
${referee.firstName} ${referee.lastName}<br/>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
|
-
|
||||||
</c:otherwise>
|
</c:otherwise>
|
||||||
</c:choose>
|
</c:choose>
|
||||||
</td>
|
</td>
|
||||||
@@ -328,12 +371,17 @@ function showArticleReferee() {
|
|||||||
<c:if test="${article.state == 'ACCEPTED'}">
|
<c:if test="${article.state == 'ACCEPTED'}">
|
||||||
Accepted
|
Accepted
|
||||||
</c:if>
|
</c:if>
|
||||||
</td>
|
</td>
|
||||||
<td align="center" width="25%">
|
<td align="left">
|
||||||
<a href="chooseConference.htm?idConf=${article.conference.id}">${article.conference.title}</a>
|
<a href="chooseConference.htm?idConf=${article.conference.id}" title="${article.conference.title }">
|
||||||
</td>
|
${fn:substring(article.conference.title, 0, 27)}
|
||||||
<td align="center" width="25%">
|
<c:if test="${fn:length(article.conference.title) > 281}">
|
||||||
<a class="manage_link" id="articleURL" 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>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td align="right">
|
||||||
|
<a class="manage_link" id="articleURL" 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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
Reference in New Issue
Block a user