blob: c6f538610507cc92a5ee538595f09d66989960e5 [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.
--%>
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<%@ taglib uri="http://www.extremecomponents.org" prefix="ec" %>
<html>
<s:i18n name="localization.Continuum">
<head>
<title><s:text name="installationsList.page.title"/></title>
</head>
<div id="h3">
<h3>
<s:text name="installationsList.section.title"/>
</h3>
<c:if test="${not empty installations}">
<ec:table items="installations"
var="installation"
autoIncludeParameters="false"
showExports="false"
showPagination="false"
showStatusBar="false"
sortable="false"
filterable="false">
<ec:row highlightRow="true">
<ec:column property="name" title="installation.name.label" style="white-space: nowrap" />
<ec:column property="type" title="installation.type.label" style="white-space: nowrap" />
<ec:column property="varName" title="installation.varName.label" style="white-space: nowrap" />
<ec:column property="varValue" title="installation.value.label" style="white-space: nowrap" />
<ec:column property="id" title="&nbsp;" width="1%">
<a href="editInstallation.action?installation.installationId=<c:out value="${installation.installationId}"/>">
<img src="<s:url value='/images/edit.gif' includeParams="none"/>" alt="<s:text name='edit'/>" title="<s:text name='edit'/>" border="0" />
</a>
</ec:column>
<ec:column property="id" title="&nbsp;" width="1%">
<a href="deleteInstallation.action?installation.installationId=<c:out value="${installation.installationId}"/>&installation.name=<c:out value="${installation.name}"/>">
<img src="<s:url value='/images/delete.gif' includeParams="none"/>" alt="<s:text name='delete'/>" title="<s:text name='delete'/>" border="0" />
</a>
</ec:column>
</ec:row>
</ec:table>
</c:if>
<div class="functnbar3">
<s:form action="installationsTypeChoice" method="post">
<s:submit value="%{getText('add')}"/>
</s:form>
</div>
</div>
</s:i18n>