stores.jsp
Home
/
sm-shop /
src /
main /
webapp /
pages /
admin /
merchant /
stores.jsp
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<%@ page session="false" %>
<div class="tabbable">
<jsp:include page="/common/adminTabs.jsp" />
<div class="tab-content">
<div class="tab-pane active" id="catalogue-section">
<div class="sm-ui-component">
<h3><s:message code="label.store.list" text="Stores" /></h3>
<br/>
<!-- Listing grid include -->
<c:set value="/admin/store/paging.html" var="pagingUrl" scope="request"/>
<c:set value="/admin/store/remove.html" var="removeUrl" scope="request"/>
<c:set value="/admin/store/editStore.html" var="editUrl" scope="request"/>
<c:set value="/admin/store/list.html" var="refreshUrl" scope="request"/>
<c:set var="entityId" value="storeId" scope="request"/>
<c:set var="componentTitleKey" value="label.store.list" scope="request"/>
<c:set var="gridHeader" value="/pages/admin/merchant/stores-gridHeader.jsp" scope="request"/>
<c:set var="canRemoveEntry" value="true" scope="request"/>
<jsp:include page="/pages/admin/components/list.jsp"></jsp:include>
<!-- End listing grid include -->
</div>
</div>
</div>
</div>