1 {* This template is also used for the admin frontpage *}
3 {if !$title}{assign var="title" value="Frontpage"}{/if}
4 {include file="header.tpl" title=$title}
8 <p>Pick a device below to manage themes for that target/screen size</p>
10 <h1>Rockbox themes</h1>
11 <p>Pick a device below to see themes for that target/screen size</p>
15 {section name=mysec loop=$targets}
17 <a href="{$smarty.server.SCRIPT_NAME}?target={$targets[mysec].shortname}">
18 <img src="http://www.rockbox.org/playerpics/{$targets[mysec].pic}" title="{$targets[mysec].fullname}" />
20 <small>LCD: {$targets[mysec].mainlcd}x{$targets[mysec].depth}</small>
27 {if $adminmsg}<p>{$adminmsg}</p>{/if}
28 <h2>Add a missing target</h2>
29 <form method="POST" action="{$smarty.server.SCRIPT_NAME}">
30 <input type="hidden" name="addtarget" value="yes" />
34 <td><input type="text" name="fullname" /></td><td>(e.g. Apple Ipod Video)</td>
38 <td><input type="text" name="shortname" /></td><td>(e.g. ipodvideo - must match checkwps usage)</td>
41 <td>Main LCD resolution</td>
42 <td><input type="text" name="mainlcd" /></td><td>(e.g. 320x240)</td>
45 <td>Main LCD screen depth</td>
46 <td><input type="text" name="depth" /></td><td>(e.g. 16)</td>
49 <td>Remote LCD resolution</td>
50 <td><input type="text" name="remotelcd" /></td><td>(e.g. 320x240)</td>
54 <td><input type="text" name="pic" /></td><td>(e.g. ipodvideo-small.png)</td>
57 <td colspan="2" align="right"><input type="submit" value="Add" /></td>
69 {include file="footer.tpl"}