diff --git a/swh/web/templates/content.html b/swh/web/templates/content.html index b229c936..01f60eea 100644 --- a/swh/web/templates/content.html +++ b/swh/web/templates/content.html @@ -1,48 +1,43 @@ {% extends "layout.html" %} {% load static %} {% block header %} {% endblock %} {% block title %}Content display{% endblock %} {% block content %} -
- Content mime type: {{ mime_type }} , Hashing algorithm: {{ content_hash_algo}} , Content checksum: {{ content_checksum }} - Raw File -
- {% include "includes/top-navigation.html" %}
{% if "inode/x-empty" == mime_type %} File is empty {% elif "text/" in mime_type %}
     {{ content }}
   
{% elif "image/" in mime_type and content %} {% else %} Content with mime type {{ mime_type }} can not be displayed {% endif %}
{% endblock %} diff --git a/swh/web/templates/directory.html b/swh/web/templates/directory.html index 93ae0e92..e390068c 100644 --- a/swh/web/templates/directory.html +++ b/swh/web/templates/directory.html @@ -1,47 +1,43 @@ {% extends "layout.html" %} {% block title %}Directory browse{% endblock %} {% block content %} -
- Directory sha1 git: {{ dir_sha1_git }} -
- {% include "includes/top-navigation.html" %}
{% for d in dirs %} {% endfor %} {% for f in files %} {% endfor %}
File Mode Size Sha1 git
{{ d.name }} {{ d.perms }} {{ d.target }}
{{ f.name }} {{ f.perms }} {{ f.length }} {{ f.target }}
{% endblock %}