source: extensions/user_tags/template/admin.tpl

Last change on this file was 22062, checked in by nikrou, 11 years ago

Admin can allow users to add only existing tags

File size: 1.2 KB
Line 
1{html_head}
2<link rel="stylesheet" type="text/css" href="{$T4U_CSS}/admin.css">
3{/html_head}
4
5<div class="titrePage">
6  <h2>{'User Tags'|@translate}</h2>
7</div>
8
9<p>
10{'That plugin allow visitors to add tags to image.'|@translate}
11{'You can choose which users (per status) can add and delete tags.'|@translate}
12</p>
13
14<form method="post" action="" class="general">
15<fieldset>
16  <legend>{'Who can add tags?'|@translate}</legend>
17  <p class="field">
18    <select name="permission_add">
19      {html_options options=$STATUS_OPTIONS selected=$T4U_PERMISSION_ADD}
20    </select>
21  </p>
22  <p class="field"> 
23    <label><input type="checkbox" value="1" name="existing_tags_only" {if ($T4U_EXISTING_TAG_ONLY)}checked="checked"{/if}>{'Only add existing tags'|@translate}</label>
24  </p>
25</fieldset>
26<fieldset>
27  <legend>{'Who can delete related tags?'|@translate}</legend>
28  <p class="field">
29    <select name="permission_delete">
30      {html_options options=$STATUS_OPTIONS selected=$T4U_PERMISSION_DELETE}
31    </select>
32  </p>
33  <p>{'Be careful, whatever the configuration value is, new tag can be deleted anyway'|@translate}.</p>
34</fieldset>
35<p><input class="submit" type="submit" name="submit" value="{'Submit'|@translate}"></p>
36</form>
37
Note: See TracBrowser for help on using the repository browser.