2017-01-14 15:52:17 +01:00
|
|
|
<!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>
|
2017-03-25 15:59:01 +01:00
|
|
|
<input type="text" name="fromtag" placeholder="{'Tag'|t}" value="{$fromtag}"
|
2017-01-14 15:52:17 +01:00
|
|
|
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>
|
2017-03-25 15:59:01 +01:00
|
|
|
|
2017-05-25 13:26:05 +02:00
|
|
|
<p>{'You can also edit tags in the'|t} <a href="?do=taglist&sort=usage">{'tag list'|t}</a>.</p>
|
2017-01-14 15:52:17 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
|
|
|
</html>
|