diff --git a/templates/file_list.html b/templates/file_list.html
index ddf5c1e..0165d09 100644
--- a/templates/file_list.html
+++ b/templates/file_list.html
@@ -6,19 +6,32 @@
| Name | Size (MB) | Hash |
|---|
{% for obj in file_data.view_list %}
- {% if obj.type=="Directory" %}
-
- {% elif obj.type=="Image" %}
-
- {% elif obj.type=="Video" %}
-
- {% else %}
-
- {% endif %}
- {% if obj.type=="Image" %}
-
- {% endif %}
- {{obj.name}}
+ {% if obj.type == "Directory" %}
+ {{obj.name}}
+ {% else %}
+
+
+ {{obj.name}}
+
+ {% endif %}
| {{obj.size_mb}} | {{obj.hash}} |
{% endfor %}