diff options
Diffstat (limited to 'module/web/templates/default/collector.html')
-rw-r--r-- | module/web/templates/default/collector.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/module/web/templates/default/collector.html b/module/web/templates/default/collector.html index 630eddc51..e207ba99a 100644 --- a/module/web/templates/default/collector.html +++ b/module/web/templates/default/collector.html @@ -8,7 +8,6 @@ <script type="text/javascript">
document.addEvent("domready", function(){
- load = new Fx.Tween($("load-indicator"), {link: "cancel"});
var pUI = new PackageUI("url", 0);
});
</script>
@@ -49,19 +48,22 @@ document.addEvent("domready", function(){ <div id="package_{{id}}" class="package">
<div class="order" style="display: none;">{{ package.order }}</div>
- <div class="packagename" style="cursor: move;">
- {{ package.name }}
+ <div class="packagename" style="cursor: pointer;">
+ <img class="package_drag" src="/media/default/img/folder.png" style="cursor: move; margin-bottom: -2px">
+ <span class="name">{{package.name}}</span>
- <span class="buttons" style="opacity:0; cursor: default">
+ <span class="buttons" style="opacity:0">
<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 "Edit Package" %}" style="margin-left: -10px; cursor: pointer" height="12px" src="{{ MEDIA_URL }}img/pencil.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>
+ <span class="child_secrow">{% trans "Folder:" %} <span class="folder">{{package.folder}}</span> | {% trans "Password:"%} <span class="password">{{package.password}}</span> | {% trans "Priority:"%} <span class="prio">{{package.priority}}</span></span>
<ul id="sort_children_{{id}}" style="list-style: none; padding-left: 0">
</ul>
</div>
@@ -69,4 +71,7 @@ document.addEvent("domready", function(){ </li>
{% endfor %}
</ul>
+
+{% include "default/edit_package.html" %}
+
{% endblock %}
\ No newline at end of file |