diff --git a/templates/base.html.jinja b/templates/base.html.jinja index ff4051771..bc8bf4112 100644 --- a/templates/base.html.jinja +++ b/templates/base.html.jinja @@ -78,4 +78,7 @@ +{% block scripts %} +{% endblock %} + diff --git a/templates/index.html.jinja b/templates/index.html.jinja index 904ed59a3..843daf67f 100644 --- a/templates/index.html.jinja +++ b/templates/index.html.jinja @@ -1,10 +1,25 @@ {% extends "base.html.jinja" %} {% block main %} -
+
+
+
+
+ + +
+
+
+
+ +
{% for project in completion_progress | sort(attribute='completion') | reverse %} -
+

{{ project.language.name }}

@@ -47,3 +62,35 @@ You can download the data on this page in JSON format.

{% endblock %} + +{% block scripts %} + +{% endblock %}