diff --git a/webpage/templates/webpages/estatisticas.html b/webpage/templates/webpages/estatisticas.html new file mode 100644 index 0000000..f5d0c73 --- /dev/null +++ b/webpage/templates/webpages/estatisticas.html @@ -0,0 +1,104 @@ +{% extends "webpages/view.html" %} + +{% load static i18n pagination permissions_tags subject_counter %} +{% load django_bootstrap_breadcrumbs %} + +{% block javascript%} + {{ block.super }} + + +{% endblock%} + +{% block breadcrumbs %} + {{ block.super }} + {% trans 'Estatisticas' as bread %} + {% breadcrumb bread webpage%} +{% endblock %} + +{% block content %} + {% if messages %} + {% for message in messages %} + + {% endfor %} + {% endif %} +
+
+
+
+
+ +
+
+
+ +

{{title_table}}

+
+
+
+
+
+

+
+{% endblock %} diff --git a/webpage/templates/webpages/view.html b/webpage/templates/webpages/view.html index 5d585d8..1b2de44 100644 --- a/webpage/templates/webpages/view.html +++ b/webpage/templates/webpages/view.html @@ -54,5 +54,11 @@ {{ webpage.content }} {% endautoescape %} + +
+
+ {% trans "Statistics" %} +
+
{% endblock %} -- libgit2 0.21.2