diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-01-08 00:15:04 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-01-08 00:15:04 +0100 |
commit | 4bbb75de3ee0b0f02408f8c39d82004b7209ea7e (patch) | |
tree | e61aede937e5f0011a8432a99ec90098e9bf0251 /module/web/templates/default/collector.html | |
parent | new l18n files (diff) | |
download | pyload-4bbb75de3ee0b0f02408f8c39d82004b7209ea7e.tar.xz |
new buttons to (remove finished/restart failed) links
Diffstat (limited to 'module/web/templates/default/collector.html')
-rw-r--r-- | module/web/templates/default/collector.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/module/web/templates/default/collector.html b/module/web/templates/default/collector.html index 1a7a4aa0c..c0ac78202 100644 --- a/module/web/templates/default/collector.html +++ b/module/web/templates/default/collector.html @@ -36,6 +36,13 @@ document.addEvent("domready", function(){ <a href="/settings/" class="action index" accesskey="x" rel="nofollow"><img src="{{ MEDIA_URL }}img/head-menu-config.png" alt="" />{% trans "Config" %}</a>
</li>{% endblock %}
+{% block pageactions %}
+<ul id="page-actions-more">
+ <li id="del-finished"><a style="padding: 0; font-weight: bold;" href="#">{% trans "Delete Finished" %}</a></li>
+ <li id="restart-failed"><a style="padding: 0; font-weight: bold;" href="#">{% trans "Restart Failed" %}</a></li>
+</ul>
+{% endblock %}
+
{% block content %}
<div id="load-success" style="opacity: 0; float: right; color: white; background-color: #90ee90; padding: 4px; -moz-border-radius: 5px; border-radius: 5px; font-weight: bold; margin-left: -100%; margin-top: -10px;">{% trans "success" %}</div>
<div id="load-failure" style="opacity: 0; float: right; color: white; background-color: #f08080; padding: 4px; -moz-border-radius: 5px; border-radius: 5px; font-weight: bold; margin-left: -100%; margin-top: -10px;">{% trans "failure" %}</div>
|