blob: 1e2d98fb19c7e68834cc0732f38ae966ee859d5a (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{strip}
<div class="row">
{formlabel label="Title" for="title"}
{forminput}
<input type="text" size="35" id="audio_title" name="plugin[{$attachment.attachment_id}][mimeaudio][meta][title]" value="{$attachment.meta.title}" />
{/forminput}
</div>
<div class="row">
{formlabel label="Album" for="audio_album"}
{forminput}
<input type="text" size="35" id="audio_album" name="plugin[{$attachment.attachment_id}][mimeaudio][meta][album]" value="{$attachment.meta.album}" />
{/forminput}
</div>
<div class="row">
{formlabel label="Artist" for="audio_artist"}
{forminput}
<input type="text" size="35" id="audio_artist" name="plugin[{$attachment.attachment_id}][mimeaudio][meta][artist]" value="{$attachment.meta.artist}" />
{/forminput}
</div>
<div class="row">
{formlabel label="Year" for="audio_year"}
{forminput}
<input type="text" size="35" id="audio_year" name="plugin[{$attachment.attachment_id}][mimeaudio][meta][year]" value="{$attachment.meta.year}" />
{/forminput}
</div>
<div class="row">
{formlabel label="Genre" for="audio_genre"}
{forminput}
<input type="text" size="35" id="audio_genre" name="plugin[{$attachment.attachment_id}][mimeaudio][meta][genre]" value="{$attachment.meta.genre}" />
{/forminput}
</div>
{if $attachment.source_file}
<div class="row">
{formlabel label="Remove Original" for="remove_original"}
{forminput}
<input type="checkbox" id="remove_original" name="plugin[{$attachment.attachment_id}][mimeaudio][remove_original]" value="y" />
{formhelp note="This will permanently remove the original file from the server. This will still allow you to listen to the audio file but not download it."}
{/forminput}
</div>
{/if}
{/strip}
|