mirror of
https://github.com/logos-storage/deluge.git
synced 2026-05-04 16:43:09 +00:00
22 lines
555 B
HTML
22 lines
555 B
HTML
$def with (method, url, title, image='')
|
|
<div class="deluge_button">
|
|
<form method="$method" action="$url" class="deluge_button">
|
|
<button type="submit" class="deluge_button">
|
|
<input type="hidden" name="redir" value="$self_url()">
|
|
$if (button_style == 0):
|
|
$title
|
|
$if image:
|
|
<image src="/static/images/$image" class="button" alt="$title"/>
|
|
|
|
$if (button_style == 1):
|
|
$if image:
|
|
<image src="/static/images/$image" class="button" alt="$title"/>
|
|
$else:
|
|
$title
|
|
|
|
$if (button_style == 2):
|
|
$title
|
|
|
|
</button>
|
|
</form>
|
|
</div> |