Fixes double slash problem in Swift Container pseudo folder

The delimiter of Swift Container pseudo folder in the Container
table is *two* slash. A single slash is sufficient.

Change-Id: I1d9be94149d33e497a9a077a71bcb904708c2c42
Closes-bug: #1367091
This commit is contained in:
nikunj2512 2014-10-25 09:15:24 -07:00
parent 2aa0315e8b
commit 0a7446db6d
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
{% with subfolders=breadcrumb.get_subfolders %}
<ul class="breadcrumb">
<li>
Folder Path: <a href="{% url breadcrumb.url breadcrumb.root|add:'/' %}">{{ breadcrumb.root }}</a> <span class="divider">/</span>
Folder Path: <a href="{% url breadcrumb.url breadcrumb.root|add:'/' %}">{{ breadcrumb.root }}</a>
</li>
{% for subfolder, path in subfolders %}
<li>
@ -12,7 +12,7 @@
{% endif %}
{{ subfolder }}
{% if not forloop.last %}
</a> <span class="divider">/</span>
</a>
{% endif %}
</li>
{% endfor %}