aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/changetag.html
blob: 6606c4fa6bacb6495f2185ee3b03798520fdde42 (plain) (blame)
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
<!DOCTYPE html>
<html>
<head>
  {include="includes"}
</head>
<body>
{include="page.header"}
<div class="pure-g">
  <div class="pure-u-lg-1-3 pure-u-1-24"></div>
  <div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
    <h2 class="window-title">{"Manage tags"|t}</h2>
    <form method="POST" action="#" name="changetag" id="changetag">
      <div>
        <input type="text" name="fromtag" placeholder="{'Tag'|t}" value="{$fromtag}"
               list="tagsList" autocomplete="off" class="awesomplete autofocus" data-minChars="1">
        <datalist id="tagsList">
          {loop="$tags"}<option>{$key}</option>{/loop}
        </datalist>
      </div>
      <div>
        <input type="text" name="totag" placeholder="{'New name'|t}"
               list="toTagsList" autocomplete="off" class="awesomplete" data-minChars="1">
        <datalist id="toTagsList">
          {loop="$tags"}<option>{$key}</option>{/loop}
        </datalist>
      </div>
      <div><i class="fa fa-info-circle"></i> {'Case sensitive'|t}</div>
      <input type="hidden" name="token" value="{$token}">
      <div>
        <input type="submit" value="{'Rename'|t}" name="renametag">
        <input type="submit" value="{'Delete'|t}" name="deletetag" class="button button-red confirm-delete">
      </div>
    </form>

    <p>{'You can also edit tags in the'|t} <a href="?do=taglist&sort=usage">{'tag list'|t}</a>.</p>
  </div>
</div>
{include="page.footer"}
</body>
</html>