blob: a0a9263f8110b120656ac330e9dc329678a93394 [file] [log] [blame]
<%-- /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/ --%>
<%@include file="/libs/sling-cms/global.jsp"%>
<c:set var="rsrc" value="${sling:getResource(resourceResolver,slingRequest.requestPathInfo.suffix)}" />
<div class="field">
<label for="order">
Order
</label>
<div class="control">
<div class="select is-fullwidth">
<select name=":order" id="order">
<c:forEach var="sibling" items="${sling:listChildren(rsrc.parent)}" varStatus="status">
<c:choose>
<c:when test="${status.first}">
<c:choose>
<c:when test="${rsrc.path == sibling.path}">
<option value="${status.index}" selected="selected">Current Position</option>
</c:when>
<c:otherwise>
<option value="${status.index}">First</option>
</c:otherwise>
</c:choose>
</c:when>
<c:when test="${status.last}">
<c:choose>
<c:when test="${rsrc.path == sibling.path}">
<option value="${status.index}" selected="selected">Current Position</option>
</c:when>
<c:otherwise>
<option value="${status.index}">Last</option>
</c:otherwise>
</c:choose>
</c:when>
<c:otherwise>
<c:choose>
<c:when test="${rsrc.path == sibling.path}">
<option value="${status.index}" selected="selected">Current Position</option>
</c:when>
<c:otherwise>
<option value="${status.index}">Before ${sibling.name}</option>
</c:otherwise>
</c:choose>
</c:otherwise>
</c:choose>
</c:forEach>
</select>
</div>
</div>
</div>