blob: 6f7f240c33a6ff9fa08d79a6300c2f6b09a83c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1" %>
<%@ include file="include.jsp" %>
<c:set var="categories" value="${param.restricted ? 'personal password player share' : 'musicFolder general advanced personal user player share network transcoding internetRadio podcast'}"/>
<h1>
<img src="<spring:theme code="settingsImage"/>" alt=""/>
<fmt:message key="settingsheader.title"/>
</h1>
<h2>
<c:forTokens items="${categories}" delims=" " var="cat" varStatus="loopStatus">
<c:choose>
<c:when test="${loopStatus.count > 1 and (loopStatus.count - 1) % 6 != 0}"> | </c:when>
<c:otherwise></h2><h2></c:otherwise>
</c:choose>
<c:url var="url" value="${cat}Settings.view?"/>
<c:choose>
<c:when test="${param.cat eq cat}">
<span class="headerSelected"><fmt:message key="settingsheader.${cat}"/></span>
</c:when>
<c:otherwise>
<a href="${url}"><fmt:message key="settingsheader.${cat}"/></a>
</c:otherwise>
</c:choose>
</c:forTokens>
</h2>
<p></p>
|