818b3193ff
With the new routes, all pages are not all at the same folder level anymore (e.g. /shaare and /shaare/123), so we can't just use './' everywhere. The most consistent way to handle this is to prefix all path with the proper variable, and handle the actual path in controllers.
91 lines
3 KiB
HTML
91 lines
3 KiB
HTML
<!DOCTYPE html>
|
|
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
|
|
<head>
|
|
{include="includes"}
|
|
</head>
|
|
<body>
|
|
{include="page.header"}
|
|
<div id="editlinkform" class="edit-link-container" class="pure-g">
|
|
<div class="pure-u-lg-1-5 pure-u-1-24"></div>
|
|
<form method="post"
|
|
name="linkform"
|
|
action="{$base_path}/shaare"
|
|
class="page-form pure-u-lg-3-5 pure-u-22-24 page-form page-form-light"
|
|
>
|
|
<h2 class="window-title">
|
|
{if="!$link_is_new"}{'Edit Shaare'|t}{else}{'New Shaare'|t}{/if}
|
|
</h2>
|
|
{if="isset($link.id)"}
|
|
<input type="hidden" name="lf_id" value="{$link.id}">
|
|
{/if}
|
|
{if="!$link_is_new"}<div class="created-date">{'Created:'|t} {$link.created|format_date}</div>{/if}
|
|
<div>
|
|
<label for="lf_url">{'URL'|t}</label>
|
|
</div>
|
|
<div>
|
|
<input type="text" name="lf_url" id="lf_url" value="{$link.url}" class="lf_input">
|
|
</div>
|
|
<div>
|
|
<label for="lf_title">{'Title'|t}</label>
|
|
</div>
|
|
<div>
|
|
<input type="text" name="lf_title" id="lf_title" value="{$link.title}" class="lf_input autofocus">
|
|
</div>
|
|
<div>
|
|
<label for="lf_description">{'Description'|t}</label>
|
|
</div>
|
|
<div>
|
|
<textarea name="lf_description" id="lf_description" class="autofocus">{$link.description}</textarea>
|
|
</div>
|
|
<div>
|
|
<label for="lf_tags">{'Tags'|t}</label>
|
|
</div>
|
|
<div>
|
|
<input type="text" name="lf_tags" id="lf_tags" value="{$link.tags}" class="lf_input autofocus"
|
|
data-list="{loop="$tags"}{$key}, {/loop}" data-multiple data-autofirst autocomplete="off" >
|
|
</div>
|
|
|
|
<div>
|
|
<input type="checkbox" name="lf_private" id="lf_private"
|
|
{if="($link_is_new && $default_private_links || $link.private == true)"}
|
|
checked="checked"
|
|
{/if}>
|
|
<label for="lf_private">{'Private'|t}</label>
|
|
</div>
|
|
|
|
{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}
|
|
|
|
<div id="editlink-plugins">
|
|
{loop="$edit_link_plugin"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
|
|
|
|
<div class="submit-buttons center">
|
|
<input type="submit" name="save_edit" class="" id="button-save-edit"
|
|
value="{if="$link_is_new"}{'Save'|t}{else}{'Apply Changes'|t}{/if}">
|
|
{if="!$link_is_new"}
|
|
<a href="{$base_path}/?delete_link&lf_linkdate={$link.id}&token={$token}"
|
|
title="" name="delete_link" class="button button-red confirm-delete">
|
|
{'Delete'|t}
|
|
</a>
|
|
{/if}
|
|
</div>
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
|
{if="$http_referer"}
|
|
<input type="hidden" name="returnurl" value="{$http_referer}">
|
|
{/if}
|
|
</form>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|