blob: 98d35738a427784ad9e95488436527e3f98d3a3d [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 prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Admin: Delete Remote Repository</title>
<s:head/>
</head>
<body>
<h1>Admin: Delete Remote Repository</h1>
<s:actionerror/>
<div id="contentArea">
<div class="warningbox">
<p>
<strong>WARNING: This operation can not be undone.</strong>
</p>
</div>
<p>
Are you sure you want to delete the following remote repository?
</p>
<div class="infobox">
<table class="infotable">
<tr>
<td>ID:</td>
<td><code>${repository.id}</code></td>
</tr>
<tr>
<td>Name:</td>
<td>${repository.name}</td>
</tr>
<tr>
<td>URL:</td>
<td><a href="${repository.url}">${repository.url}</a></td>
</tr>
</table>
</div>
<s:form method="post" action="deleteRemoteRepository" namespace="/admin" validate="true" theme="simple">
<s:hidden name="repoid"/>
<div class="buttons">
<s:submit value="Confirm" method="delete"/>
<s:submit value="Cancel" method="execute"/>
</div>
</s:form>
</div>
</body>
</html>