deluge/plugins/WebUi/templates/deluge/part_button.html
2007-10-07 04:56:01 +00:00

23 lines
598 B
HTML

$def with (method, url, title, image='')
<div class="deluge_button">
<form method="$method" action="$url" class="deluge_button">
<input type="hidden" name="redir" value="$self_url()">
<button type="submit" class="deluge_button">
$if (get_config('button_style') == 0):
$title
$if image:
<image src="/static/images/$image" class="button" alt="$title"/>
$if (get_config('button_style') == 1):
$if image:
<image src="/static/images/$image" class="button" alt="$title"/>
$else:
$title
$if (get_config('button_style') == 2):
$title
</button>
</form>
</div>