diff options
Diffstat (limited to 'module/web/templates/default/collector.html')
-rw-r--r-- | module/web/templates/default/collector.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/templates/default/collector.html b/module/web/templates/default/collector.html index 266038af1..613fb824b 100644 --- a/module/web/templates/default/collector.html +++ b/module/web/templates/default/collector.html @@ -106,7 +106,7 @@ document.addEvent("domready", function(){ </li>{% endblock %}
{% block content %}
-{% for id,package in content.iteritems %}
+{% for id,package in content %}
<div id="package_{{id}}" class="package">
<div class="packagename" style="cursor: pointer;">
{{ package.name }}
@@ -118,7 +118,7 @@ document.addEvent("domready", function(){ <img title="{% trans "Push Package to Queue" %}" style="margin-left: -10px" height="12px" src="{{ MEDIA_URL }}img/package_go.png" />
</div>
<div id="children_{{id}}" style="display: none;" class="children">
- {% for lid, child in package.links.iteritems %}
+ {% for lid, child in package.links %}
<div class="child" id="file_{{lid}}">
<span class="child_status">
<img src="/media/default/img/{{child.icon}}" style="width: 12px; height:12px;"/>
|