mirror of
https://github.com/apache/archiva.git
synced 2025-02-21 01:15:08 +00:00
[MRM-873]
submitted by Gwen Harold Autencio -do not display the up image link of the first repository and do not display the down image link of the last repository git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@682250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28c3b26be0
commit
fd144735f7
@ -93,6 +93,8 @@
|
||||
</div>
|
||||
</c:if>
|
||||
|
||||
<c:set var="numberOfRepos" value="${fn:length(repositoryGroup.value.repositories)}" />
|
||||
|
||||
<c:forEach items="${repositoryGroup.value.repositories}" var="repository" varStatus="r">
|
||||
|
||||
<c:choose>
|
||||
@ -119,12 +121,16 @@
|
||||
<ww:param name="repoGroupId" value="%{'${repositoryGroup.key}'}"/>
|
||||
<ww:param name="repoId" value="managedRepositories['${repository}'].id"/>
|
||||
</ww:url>
|
||||
<ww:a href="%{sortUpRepositoryUrl}" cssClass="up" title="Move Repository Up">
|
||||
<img src="${iconUpUrl}"/>
|
||||
</ww:a>
|
||||
<ww:a href="%{sortDownRepositoryUrl}" cssClass="down" title="Move Repository Down">
|
||||
<img src="${iconDownUrl}"/>
|
||||
</ww:a>
|
||||
<c:if test="${r.count > 1}">
|
||||
<ww:a href="%{sortUpRepositoryUrl}" cssClass="up" title="Move Repository Up">
|
||||
<img src="${iconUpUrl}"/>
|
||||
</ww:a>
|
||||
</c:if>
|
||||
<c:if test="${r.count < numberOfRepos}">
|
||||
<ww:a href="%{sortDownRepositoryUrl}" cssClass="down" title="Move Repository Down">
|
||||
<img src="${iconDownUrl}"/>
|
||||
</ww:a>
|
||||
</c:if>
|
||||
<ww:a href="%{removeRepositoryUrl}" cssClass="delete" title="Delete Repository">
|
||||
<img src="${iconDeleteUrl}"/>
|
||||
</ww:a>
|
||||
@ -148,4 +154,4 @@
|
||||
|
||||
</div> <%-- content area --%>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</c:choose>
|
||||
|
Loading…
x
Reference in New Issue
Block a user