diff --git a/dataedit/templates/dataedit/dataedit_tablelist.html b/dataedit/templates/dataedit/dataedit_tablelist.html
index 6251f1af5..96883e566 100644
--- a/dataedit/templates/dataedit/dataedit_tablelist.html
+++ b/dataedit/templates/dataedit/dataedit_tablelist.html
@@ -1,11 +1,298 @@
{% extends "dataedit/filter.html" %}
{% block title %} - {{schema}}{% endblock %}
+{% block after-head %}
+
+
+
+{% endblock after-head %}
+
{% block site-header %}
-
+
Database
@@ -18,31 +305,252 @@
{% block data_content %}
{% load dataedit.taghandler %}
-
-
-
- Name
- Tags
-
-
-
- {% for table, label, tags in tables %}
+
+
-
- {% if label %}
- {{ label }}
- {% else %}
- {{ table }}
- {% endif %}
-
- {% for tag in tags %}
- {{tag.name}}
+
+
+
+
+
+
Available Datasets {{ tables|length }}
+
+
+
+
+
+
+
+
+
+
+ Name
+ Tags
+
+
+
+ {% for table, label, tags in tables %}
+
+ {% if label %}
+ {{ label }}
+ {% else %}
+ {{ table }}
+ {% endif %}
+
+ {% for tag in tags %}
+ {{tag.name}}
+ {% endfor %}
+
+
{% endfor %}
-
-
- {% endfor %}
-
-
-
+
+
+
+
+
+
+
+
+
Available Datasets {{ tables|length }}
+
+
+
+
+
+
+
+
+ {% for table, label, tags in tables %}
+
+
+
+
+
+
Dataset from the {{ schema }} schema.
+
+
+
+
Tags
+
+ {% for tag in tags %}
+ {{tag.name}}
+ {% endfor %}
+ {% if not tags %}
+ No tags available
+ {% endif %}
+
+
+
+
+
+
+
Schema
+
{{ schema }}
+
+
+
License
+
+
+ CC BY 4.0
+
+
+
+
+
+
+
+
+
+
+
+
Detailed Metadata
+
+
+
How to Cite
+
+ Open Energy Platform ({% now "Y" %}). {{ label|default:table }} [Data set]. Open Energy Platform. https://openenergy-platform.org/dataedit/view/{{ schema }}/{{ table }}
+
+
+
+
+ {% endfor %}
+
+
+
-{% endblock %}
+
+{% endblock %}
\ No newline at end of file