1<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
2<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
4<html><head>
5    <%@ include file="head.jsp" %>
6</head>
7<body class="mainframe bgcolor1">
8
9<h1 style="padding-bottom:0.5em">
10    <fmt:message key="importPlaylist.title"/>
11</h1>
12
13<c:if test="${not empty model.playlist}">
14    <p>
15        <fmt:message key="importPlaylist.success"><fmt:param value="${model.playlist.name}"/></fmt:message>
16        <script type="text/javascript" language="javascript">
17            parent.left.updatePlaylists();
18        </script>
19    </p>
20</c:if>
21
22<c:if test="${not empty model.error}">
23    <p class="warning">
24        <fmt:message key="importPlaylist.error"><fmt:param value="${model.error}"/></fmt:message>
25    </p>
26</c:if>
27
28<div style="padding-bottom: 0.25em">
29    <fmt:message key="importPlaylist.text"/>
30</div>
31<form method="post" enctype="multipart/form-data" action="importPlaylist.view">
32    <input type="file" id="file" name="file" size="40"/>
33    <input type="submit" value="<fmt:message key="common.ok"/>"/>
34</form>
35
36
37</body></html>