diff --git a/swh/web/ui/templates/origin.html b/swh/web/ui/templates/origin.html index 3d773559d..8d7d80066 100644 --- a/swh/web/ui/templates/origin.html +++ b/swh/web/ui/templates/origin.html @@ -1,40 +1,40 @@ {% extends "layout.html" %} {% block title %}Origin{% endblock %} {% block content %} {% if message is not none %} {{ message }} {% endif %} {% if origin is not none %} -
Details on origin {{ origin_id }}: +
Details on origin {{ origin['id'] }}:
{% for key in ['type', 'lister', 'project', 'url'] %} {% if origin[key] is not none %}
{{ key }}
{{ origin[key] }}
{% endif %} {% endfor %} {% if 'decoding_failures' in content %}
(some decoding errors)
{% endif %}
- + {% endif %} {% endblock %}