aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/editlink.html
blob: eb8807b5a2d0fc7bdbc594f0a020815f3e331834 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>{include="includes"}
</head>
<body
{if="$link.title==''"}onload="document.linkform.lf_title.focus();"
{elseif="$link.description==''"}onload="document.linkform.lf_description.focus();"
{else}onload="document.linkform.lf_tags.focus();"{/if} >
<div id="pageheader">
    {include="page.header"}
    <div id="shaarli_title"><a href="{$titleLink}">{$shaarlititle}</a></div>
    <div id="editlinkform">
        <form method="post" name="linkform" action="{$base_path}/admin/shaare">
          {if="isset($link.id)"}
	          <input type="hidden" name="lf_id" value="{$link.id}">
          {/if}
            <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>
            <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>
            <label for="lf_description"><i>Description</i></label><br><textarea name="lf_description" id="lf_description" rows="4" cols="25">{$link.description}</textarea><br>
            <label for="lf_tags"><i>Tags</i></label><br>
            <input type="text" name="lf_tags" id="lf_tags" value="{$link.tags}" class="lf_input"
                data-list="{loop="$tags"}{$key}, {/loop}" data-multiple autocomplete="off" ><br>

          {if="$formatter==='markdown'"}
            <div class="md_help">
              {'Description will be rendered with'|t}
              <a href="http://daringfireball.net/projects/markdown/syntax" title="{'Markdown syntax documentation'|t}">
                {'Markdown syntax'|t}
              </a>.
            </div>
          {/if}

          {loop="$edit_link_plugin"}
                {$value}
            {/loop}

            {if="($link_is_new && $default_private_links) || $link.private == true"}
            <input type="checkbox" checked="checked" name="lf_private" id="lf_private">
            &nbsp;<label for="lf_private"><i>Private</i></label><br>
            {else}
            <input type="checkbox"  name="lf_private" id="lf_private">
            &nbsp;<label for="lf_private"><i>Private</i></label><br><br>
            {/if}
            <input type="submit" value="Save" name="save_edit" class="bigbutton">
            {if="!$link_is_new && isset($link.id)"}
              <a href="{$base_path}/admin/shaare/delete?id={$link.id}&amp;token={$token}"
                 name="delete_link" class="bigbutton"
                 onClick="return confirmDeleteLink();">
                {'Delete'|t}
              </a>
            {/if}
            <input type="hidden" name="token" value="{$token}">
            <input type="hidden" name="source" value="{$source}">
            {if="$http_referer"}<input type="hidden" name="returnurl" value="{$http_referer}">{/if}
        </form>
    </div>
</div>
{include="page.footer"}
</body>
</html>