2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
2025-04-18 10:57:05 +02:00
|
|
|
<html{if="$language !=='auto'"} lang=" {$language}"{/if}>
|
2017-12-15 12:16:50 +01:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<head>
|
|
|
|
{include="includes"}
|
|
|
|
</head>
|
2017-12-15 12:16:50 +01:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<body>
|
|
|
|
{include="page.header"}
|
|
|
|
<section>
|
|
|
|
<h2 class="window-title">{"Export Database"|t}</h2>
|
|
|
|
<form method="POST" action="{$base_path}/admin/export" name="exportform" id="exportform">
|
|
|
|
<fieldset>
|
|
|
|
<legend>{'Selection'|t}</legend>
|
|
|
|
<label>
|
|
|
|
<input type="radio" name="selection" value="all" checked="checked">
|
|
|
|
{'All'|t}
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input type="radio" name="selection" value="private">
|
|
|
|
{'Private'|t}
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input type="radio" name="selection" value="public">
|
|
|
|
{'Public'|t}
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
<label for="prepend_note_url">
|
|
|
|
<input type="checkbox" name="prepend_note_url" id="prepend_note_url">
|
|
|
|
{'Prepend note permalinks with this Shaarli instance\'s URL'|t} <small>({'Useful to import bookmarks in a web browser'|t})</small>
|
|
|
|
</label>
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
2017-12-15 12:16:50 +01:00
|
|
|
<input type="submit" value="{'Export'|t}">
|
2025-04-18 10:57:05 +02:00
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
2017-12-15 12:16:50 +01:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
</html>
|