-
/
+
/
{% for name, url in breadcrumb_urls %}
{{ name }}
{{ '/' if not loop.last else '' }}
diff --git a/templates/tree.html b/templates/tree.html
index ef9755e4..3d82a104 100644
--- a/templates/tree.html
+++ b/templates/tree.html
@@ -15,6 +15,11 @@
{% block main %}
+ {% for warning in warnings %}
+ {% if warning is not none %}
+
Note: {{ warning }}
+ {% endif %}
+ {% endfor %}
{% if back_url is not none %}
@@ -23,10 +28,10 @@
|
{% endif %}
- {% for type, name, path, url, size in dir_entries %}
-
+ {% for type, name, path, url, size, diff_cls in dir_entries %}
+
-
{% if type == 'symlink' %}
{{ name }} -> {{ path }}
|