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 %}
{% 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" %}
File |
Mode |
Size |
Sha1 git |
{% for d in dirs %}
{{ d.name }}
|
{{ d.perms }} |
|
{{ d.target }} |
{% endfor %}
{% for f in files %}
{{ f.name }}
|
{{ f.perms }} |
{{ f.length }} |
{{ f.target }} |
{% endfor %}
{% endblock %}