diff options
Diffstat (limited to 'module/web/templates/default/collector.html')
-rw-r--r-- | module/web/templates/default/collector.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/web/templates/default/collector.html b/module/web/templates/default/collector.html index 0143e13ec..630eddc51 100644 --- a/module/web/templates/default/collector.html +++ b/module/web/templates/default/collector.html @@ -9,7 +9,7 @@ document.addEvent("domready", function(){
load = new Fx.Tween($("load-indicator"), {link: "cancel"});
- var pUI = new PackageUI("url");
+ var pUI = new PackageUI("url", 0);
});
</script>
{% endblock %}
@@ -48,12 +48,17 @@ document.addEvent("domready", function(){ <li>
<div id="package_{{id}}" class="package">
<div class="order" style="display: none;">{{ package.order }}</div>
+
<div class="packagename" style="cursor: move;">
{{ package.name }}
+ <span class="buttons" style="opacity:0; cursor: default">
<img title="{% trans "Delete Package" %}" style="cursor: pointer" width="12px" height="12px" src="{{ MEDIA_URL }}img/delete.png" />
<img title="{% trans "Restart Package" %}" style="margin-left: -10px; cursor: pointer" height="12px" src="{{ MEDIA_URL }}img/arrow_refresh.png" />
+
+ <img title="{% trans "Move Package to Queue" %}" style="margin-left: -10px; cursor: pointer" height="12px" src="{{ MEDIA_URL }}img/package_go.png" />
+ </span>
</div>
<div id="children_{{id}}" style="display: none;" class="children">
<span class="child_secrow">{% trans "Folder:" %} {{package.folder}} | {% trans "Password:"%} {{ package.password }} | {% trans "Priority:"%} {{ package.priority }}</span>
|