-
-
-
-{% endblock content%}
diff --git a/app/src/web/templates/conn_table.html.j2 b/app/src/web/templates/templ_conn_table.html.j2
similarity index 97%
rename from app/src/web/templates/conn_table.html.j2
rename to app/src/web/templates/templ_conn_table.html.j2
index c6c5f62..6dd69b1 100644
--- a/app/src/web/templates/conn_table.html.j2
+++ b/app/src/web/templates/templ_conn_table.html.j2
@@ -12,7 +12,7 @@
{% endif %}
{%- endmacro%}
-
Connections
+
{{_('Connections')}}
{% if table.thead is defined%}
diff --git a/app/src/web/templates/templ_log_files_list.html.j2 b/app/src/web/templates/templ_log_files_list.html.j2
new file mode 100644
index 0000000..9df7ee5
--- /dev/null
+++ b/app/src/web/templates/templ_log_files_list.html.j2
@@ -0,0 +1,31 @@
+
+{% for file in dir_list %}
+
+
+
+
+
{{file.name}}
+
+
+
+ {% for idx, name in [('created',_('Created')), ('modified', _('Modified')), ('size', _('Size'))]%}
+
+
{{_(name)}}:
+
{{file[idx]}}
+
+ {% endfor %}
+
+
+
+
+
+
+{% if 0 == (loop.index%4) and not last %}
+
+
+{% endif %}
+{% endfor %}
+
+
diff --git a/app/src/web/templates/notes_list.html.j2 b/app/src/web/templates/templ_notes_list.html.j2
similarity index 100%
rename from app/src/web/templates/notes_list.html.j2
rename to app/src/web/templates/templ_notes_list.html.j2