]>
Commit | Line | Data |
---|---|---|
1 | <!DOCTYPE html> | |
2 | <html> | |
3 | <head>{include="includes"} | |
4 | <link type="text/css" rel="stylesheet" href="../inc/awesomplete.css" /> | |
5 | </head> | |
6 | <body | |
7 | {if="$link.title==''"}onload="document.linkform.lf_title.focus();" | |
8 | {elseif="$link.description==''"}onload="document.linkform.lf_description.focus();" | |
9 | {else}onload="document.linkform.lf_tags.focus();"{/if} > | |
10 | <div id="pageheader"> | |
11 | {if="$source !== 'firefoxsocialapi'"} | |
12 | {include="page.header"} | |
13 | {/if} | |
14 | <div id="editlinkform"> | |
15 | <form method="post" name="linkform"> | |
16 | <input type="hidden" name="lf_linkdate" value="{$link.linkdate}"> | |
17 | <label for="lf_url"><i>URL</i></label><br><input type="text" name="lf_url" id="lf_url" value="{$link.url}" class="lf_input"><br> | |
18 | <label for="lf_title"><i>Title</i></label><br><input type="text" name="lf_title" id="lf_title" value="{$link.title}" class="lf_input"><br> | |
19 | <label for="lf_description"><i>Description</i></label><br><textarea name="lf_description" id="lf_description" rows="4" cols="25">{$link.description}</textarea><br> | |
20 | <label for="lf_tags"><i>Tags</i></label><br> | |
21 | <input type="text" name="lf_tags" id="lf_tags" value="{$link.tags}" class="lf_input" | |
22 | data-list="{loop="$tags"}{$key}, {/loop}" data-multiple autocomplete="off" ><br> | |
23 | ||
24 | {loop="$edit_link_plugin"} | |
25 | {$value} | |
26 | {/loop} | |
27 | ||
28 | {if="($link_is_new && $default_private_links) || $link.private == true"} | |
29 | <input type="checkbox" checked="checked" name="lf_private" id="lf_private"> | |
30 | <label for="lf_private"><i>Private</i></label><br> | |
31 | {else} | |
32 | <input type="checkbox" name="lf_private" id="lf_private"> | |
33 | <label for="lf_private"><i>Private</i></label><br> | |
34 | {/if} | |
35 | <input type="submit" value="Save" name="save_edit" class="bigbutton"> | |
36 | <input type="submit" value="Cancel" name="cancel_edit" class="bigbutton"> | |
37 | {if="!$link_is_new"}<input type="submit" value="Delete" name="delete_link" class="bigbutton delete" onClick="return confirmDeleteLink();">{/if} | |
38 | <input type="hidden" name="token" value="{$token}"> | |
39 | {if="$http_referer"}<input type="hidden" name="returnurl" value="{$http_referer}">{/if} | |
40 | </form> | |
41 | </div> | |
42 | </div> | |
43 | {if="$source !== 'firefoxsocialapi'"} | |
44 | {include="page.footer"} | |
45 | {/if} | |
46 | <script src="inc/awesomplete.min.js#"></script> | |
47 | <script src="inc/awesomplete-multiple-tags.js#"></script> | |
48 | <script> | |
49 | awesompleteUniqueTag('#lf_tags'); | |
50 | </script> | |
51 | </body> | |
52 | </html> |