aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/changetag.html
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/changetag.html')
-rw-r--r--tpl/changetag.html35
1 files changed, 21 insertions, 14 deletions
diff --git a/tpl/changetag.html b/tpl/changetag.html
index fdfb0b37..13cc5cf1 100644
--- a/tpl/changetag.html
+++ b/tpl/changetag.html
@@ -1,27 +1,34 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html> 2<html>
3<head>{include="includes"} 3<head>{include="includes"}
4{if="empty($GLOBALS['disablejquery'])"}<script src="inc/jquery.min.js#"></script><script src="inc/jquery-ui.min.js#"></script>{/if} 4 <link type="text/css" rel="stylesheet" href="../inc/awesomplete.css" />
5 <script src="inc/awesomplete.min.js#"></script>
5</head> 6</head>
6<body onload="document.changetag.fromtag.focus();"> 7<body onload="document.changetag.fromtag.focus();">
7<div id="pageheader"> 8<div id="pageheader">
8 {include="page.header"} 9 {include="page.header"}
9 <form method="POST" action="" name="changetag" id="changetag"> 10 <form method="POST" action="" name="changetag" id="changetag">
10 <input type="hidden" name="token" value="{$token}"> 11 <input type="hidden" name="token" value="{$token}">
11 Tag: <input type="text" name="fromtag" id="fromtag"> 12 <div>
12 <input type="text" name="totag" id="totag"> 13 <label for="fromtag">Tag:</label>
13 <input type="submit" name="renametag" value="Rename tag" class="bigbutton"> 14 </div>
14 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();"><br>(Case sensitive)</form> 15 <div>
16 <input type="text" name="fromtag" id="fromtag" list="tagsList" autocomplete="off" class="awesomplete" data-minChars="1" />
17 <datalist id="tagsList">
18 {loop="$tags"}<option>{$key}</option>{/loop}
19 </datalist>
20 </div>
21
22 <div>
23 <input type="text" name="totag" id="totag">
24 <input type="submit" name="renametag" value="Rename tag" class="bigbutton">
25 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();">
26 </div>
27 </form>
28 <div class="clear white">(Case sensitive)</div>
29</div>
15<script>function confirmDeleteTag() { var agree=confirm("Are you sure you want to delete this tag from all links ?"); if (agree) return true ; else return false ; }</script> 30<script>function confirmDeleteTag() { var agree=confirm("Are you sure you want to delete this tag from all links ?"); if (agree) return true ; else return false ; }</script>
16</div> 31</div>
17{include="page.footer"} 32{include="page.footer"}
18{if="($GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()) && empty($GLOBALS['disablejquery'])"}
19<script>
20$(document).ready(function()
21{
22 $('#fromtag').autocomplete({source:'{$source}?ws=singletag',minLength:1});
23});
24</script>
25{/if}
26</body> 33</body>
27</html> 34</html>