My fork of airsonic with experimental fixes and improvements. See branch "custom"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
929 B

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
<html><head>
<%@ include file="head.jsp" %>
</head><body>
<h1><fmt:message key="upload.title"/></h1>
<c:forEach items="${model.uploadedFiles}" var="file">
<p><fmt:message key="upload.success"><fmt:param value="${file.path}"/></fmt:message></p>
</c:forEach>
<c:forEach items="${model.unzippedFiles}" var="file">
<fmt:message key="upload.unzipped"><fmt:param value="${file.path}"/></fmt:message><br/>
</c:forEach>
<c:choose>
<c:when test="${not empty model.exception}">
<p><fmt:message key="upload.failed"><fmt:param value="${model.exception.message}"/></fmt:message></p>
</c:when>
<c:when test="${empty model.uploadedFiles}">
<p><fmt:message key="upload.empty"/></p>
</c:when>
</c:choose>
<div class="back"><a href="more.view?"><fmt:message key="common.back"/></a></div>
</body></html>