| 98 |
lars |
1 |
{include file="header.tpl" focus=track.t_name}
|
|
|
2 |
<form name="track" method="post" action="{$SCRIPT_NAME}" onsubmit="return check_track_form();">
|
|
|
3 |
<table>
|
|
|
4 |
<tr>
|
|
|
5 |
<th>{$L_PROPERTY}</th>
|
|
|
6 |
<th>{$L_VALUE}</th>
|
|
|
7 |
</tr>
|
|
|
8 |
<tr>
|
|
|
9 |
<td>{$L_TRACK_NAME}</td>
|
|
|
10 |
<td><input type="text" name="t_name" value="{$t_name}" size="100"></td>
|
|
|
11 |
</tr>
|
|
|
12 |
<tr>
|
|
|
13 |
<td>{$L_ARTIST}</td>
|
|
|
14 |
<td>{html_options name="t_artist" options=$artists selected=$cur_artist}</td>
|
|
|
15 |
</tr>
|
|
|
16 |
<tr>
|
|
|
17 |
<td>{$L_DURATION}</td>
|
|
|
18 |
<td>{html_options name="min" options=$mins selected=$min} {html_options name="sec" options=$secs selected=$sec}</td>
|
|
|
19 |
</tr>
|
|
|
20 |
<tr>
|
|
|
21 |
<td>{$L_GENRE}</td>
|
|
|
22 |
<td>{html_options name="t_genre" options=$genres selected=$cur_genre}</td>
|
|
|
23 |
</tr>
|
|
|
24 |
<tr>
|
|
|
25 |
<td class="catBottom" colspan="2" ><input type="submit" class="mainoption" value="{$L_SAVE}"></td>
|
|
|
26 |
</table>
|
|
|
27 |
<input type="hidden" name="id" value="{$id}">
|
|
|
28 |
<input type="hidden" name="mode" value="{$new_mode}">
|
|
|
29 |
</form>
|
|
|
30 |
{include file="footer.tpl"}
|