Merge "Remove duplicate colon from Size string"

This commit is contained in:
Jenkins 2014-03-31 17:48:08 +00:00 committed by Gerrit Code Review
commit e4bc141700
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{% load i18n %}
<ul>
<li>{% trans "Object Count: " %}{{ container.container_object_count }}</li>
<li>{% trans "Size: " %}: {{ container.container_bytes_used|filesizeformat }}</li>
<li>{% trans "Size: " %}{{ container.container_bytes_used|filesizeformat }}</li>
<li>{% trans "Access: " %}
{% if container.public_url %}
<a href="{{ container.public_url }}">{% trans "Public" %}</a>
@ -9,4 +9,4 @@
{% trans "Private" %}
{% endif %}
</li>
</ul>
</ul>