mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
346412eb2a
Former-commit-id: c1c1881302a241fdc7140e6aabeb9b49977bd7c6 [formerly 84bb454c2f34baffd9dfa91645b8aff149e52620] [formerly 29e258c7a16db1ca8a3fde7c5e4e3cffc47899a6 [formerly 84ddad027f
]]
Former-commit-id: 0018a51df5bc801b783a3ffe17d9f33c504ce094 [formerly 0072c425cd4754e38f30007ab9f5272ea4b40370]
Former-commit-id: d298f006e58ef9e4987def4bc354818062b30fcd
44 lines
1.1 KiB
Cheetah
44 lines
1.1 KiB
Cheetah
{{ define "templates" }}
|
|
<template id="question-template">
|
|
<form class="prompt">
|
|
<h3></h3>
|
|
<p></p>
|
|
<input autofocus type="text">
|
|
<div>
|
|
<button type="submit" autofocus class="ok">OK</button>
|
|
<button class="cancel" onclick="closePrompt(event);">Cancel</button>
|
|
</div>
|
|
</form>
|
|
</template>
|
|
|
|
<template id="message-template">
|
|
<div class="prompt">
|
|
<h3></h3>
|
|
<p></p>
|
|
<div>
|
|
<button type="submit" onclick="closePrompt(event);" class="ok">OK</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template id="move-template">
|
|
<form class="prompt">
|
|
<h3>Move</h3>
|
|
<p>Choose new house for your file(s)/folder(s):</p>
|
|
|
|
<div class="file-list">
|
|
<ul>
|
|
</ul>
|
|
</div>
|
|
|
|
<p>Currently navigating on: <code></code>.</p>
|
|
|
|
<div>
|
|
<button type="submit" autofocus class="ok">Move</button>
|
|
<button class="cancel" onclick="closePrompt(event);">Cancel</button>
|
|
</div>
|
|
</form>
|
|
</template>
|
|
|
|
|
|
{{ end }} |