1 | <div class="titrePage"> |
---|
2 | <h2>RV Sitemap</h2> |
---|
3 | </div> |
---|
4 | |
---|
5 | |
---|
6 | <form method="post" action=""> |
---|
7 | |
---|
8 | <fieldset> |
---|
9 | <legend>{'Global'|@translate}</legend> |
---|
10 | <p> |
---|
11 | <label for="filename">{'Filename'|@translate} <input type="input" name="filename" value="{$FILENAME}" /></label> <a href="{$U_FILENAME}">{$U_FILENAME}</a> |
---|
12 | <label for="gzip">Gzip<input type="checkbox" name="gzip" {$GZIP_CHECKED} /></label> |
---|
13 | </p> |
---|
14 | {foreach from=$specials item=special} |
---|
15 | <label><input type="checkbox" {$special.CHECKED} name="special_{$special.NAME}"/> {$special.LABEL} </label> |
---|
16 | <input type="input" size="4" name="special_prio_{$special.NAME}" value="{$special.PRIO}"/> |
---|
17 | <select name="special_freq_{$special.NAME}" > |
---|
18 | {html_options values=$frequencies output=$frequenciesT selected=$special.FREQ} |
---|
19 | </select> |
---|
20 | <br/> |
---|
21 | {/foreach} |
---|
22 | </fieldset> |
---|
23 | |
---|
24 | <fieldset> |
---|
25 | <legend>{'Albums'|@translate}</legend> |
---|
26 | <select style="width:500px" name="categories[]" multiple="multiple" size="15"> |
---|
27 | {html_options options=$categories selected=$categories_selected} |
---|
28 | </select> |
---|
29 | <label for="prio_categories">{'Priority'|@translate} <input name="prio_categories" size="4" value="{$PRIO_CATEGORIES}" /></label> |
---|
30 | <label for="freq_categories">{'Frequency'|@translate} |
---|
31 | <select name="freq_categories" > |
---|
32 | {html_options values=$frequencies output=$frequenciesT selected=$freq_categories_selected} |
---|
33 | </select> |
---|
34 | </label> |
---|
35 | </fieldset> |
---|
36 | |
---|
37 | <fieldset> |
---|
38 | <legend>{'Tags'|@translate}</legend> |
---|
39 | <select style="width:200px" name="tags[]" multiple="multiple" size="15"> |
---|
40 | {html_options options=$tags selected=$tags_selected} |
---|
41 | </select> |
---|
42 | <label for="prio_tags">{'Priority'|@translate} <input name="prio_tags" size="4" value="{$PRIO_TAGS}" /></label> |
---|
43 | <label for="freq_tags">{'Frequency'|@translate} |
---|
44 | <select name="freq_tags" > |
---|
45 | {html_options values=$frequencies output=$frequenciesT selected=$freq_tags_selected} |
---|
46 | </select> |
---|
47 | </label> |
---|
48 | </fieldset> |
---|
49 | |
---|
50 | |
---|
51 | <p> |
---|
52 | <input type="submit" class="submit" value="{'Submit'|@translate}" name="submit" /> |
---|
53 | </p> |
---|
54 | |
---|
55 | </form> |
---|