]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/vintage/editlink.html
Apply the new system (Bookmark + Service) to the whole code base
[github/shaarli/Shaarli.git] / tpl / vintage / editlink.html
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 {else}
14 <div id="shaarli_title"><a href="{$titleLink}">{$shaarlititle}</a></div>
15 {/if}
16 <div id="editlinkform">
17 <form method="post" name="linkform">
18 <input type="hidden" name="lf_linkdate" value="{$link.linkdate}">
19 {if="isset($link.id)"}
20 <input type="hidden" name="lf_id" value="{$link.id}">
21 {/if}
22 <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>
23 <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>
24 <label for="lf_description"><i>Description</i></label><br><textarea name="lf_description" id="lf_description" rows="4" cols="25">{$link.description}</textarea><br>
25 <label for="lf_tags"><i>Tags</i></label><br>
26 <input type="text" name="lf_tags" id="lf_tags" value="{$link.tags}" class="lf_input"
27 data-list="{loop="$tags"}{$key}, {/loop}" data-multiple autocomplete="off" ><br>
28
29 {if="$formatter==='markdown'"}
30 <div class="md_help">
31 {'Description will be rendered with'|t}
32 <a href="http://daringfireball.net/projects/markdown/syntax" title="{'Markdown syntax documentation'|t}">
33 {'Markdown syntax'|t}
34 </a>.
35 </div>
36 {/if}
37
38 {loop="$edit_link_plugin"}
39 {$value}
40 {/loop}
41
42 {if="($link_is_new && $default_private_links) || $link.private == true"}
43 <input type="checkbox" checked="checked" name="lf_private" id="lf_private">
44 &nbsp;<label for="lf_private"><i>Private</i></label><br>
45 {else}
46 <input type="checkbox" name="lf_private" id="lf_private">
47 &nbsp;<label for="lf_private"><i>Private</i></label><br><br>
48 {/if}
49 <input type="submit" value="Save" name="save_edit" class="bigbutton">
50 {if="!$link_is_new && isset($link.id)"}
51 <a href="?delete_link&amp;lf_linkdate={$link.id}&amp;token={$token}"
52 name="delete_link" class="bigbutton"
53 onClick="return confirmDeleteLink();">
54 {'Delete'|t}
55 </a>
56 {/if}
57 <input type="hidden" name="token" value="{$token}">
58 {if="$http_referer"}<input type="hidden" name="returnurl" value="{$http_referer}">{/if}
59 </form>
60 </div>
61 </div>
62 {if="$source !== 'firefoxsocialapi'"}
63 {include="page.footer"}
64 {/if}
65 </body>
66 </html>