blob: 05d55803e689323cad22b8c82395e3bf63c39227 [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="/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>
<s:if test="installations.size() > 0">
<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%">
<s:url var="editUrl" action="editInstallation">
<s:param name="installation.installationId" value="#attr.installation.installationId" />
</s:url>
<s:a href="%{editUrl}">
<img src="<s:url value='/images/edit.gif' includeParams="none"/>" alt="<s:text name='edit'/>" title="<s:text name='edit'/>" border="0" />
</s:a>
</ec:column>
<ec:column property="id" title="&nbsp;" width="1%">
<s:url var="deleteUrl" action="deleteInstallation">
<s:param name="installation.installationId" value="#attr.installation.installationId" />
<s:param name="installation.name" value="#attr.installation.name" />
</s:url>
<s:a href="%{deleteUrl}">
<img src="<s:url value='/images/delete.gif' includeParams="none"/>" alt="<s:text name='delete'/>" title="<s:text name='delete'/>" border="0" />
</s:a>
</ec:column>
</ec:row>
</ec:table>
</s:if>
<div class="functnbar3">
<s:form action="installationsTypeChoice" method="post">
<s:submit value="%{getText('add')}"/>
</s:form>
</div>
</div>
</s:i18n>