From: Cezary Czaplewski Date: Mon, 8 Jan 2018 20:03:04 +0000 (+0100) Subject: changelog page added X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=commitdiff_plain;h=f37d464d427e561556e76a1c37a3a74f23b56c97;p=django_unres.git changelog page added --- diff --git a/django_simple/todo/templates/base.html b/django_simple/todo/templates/base.html index 55e2d39..50f7e14 100644 --- a/django_simple/todo/templates/base.html +++ b/django_simple/todo/templates/base.html @@ -27,7 +27,8 @@ diff --git a/django_simple/todo/templates/changelog.html b/django_simple/todo/templates/changelog.html new file mode 100644 index 0000000..49d1e6b --- /dev/null +++ b/django_simple/todo/templates/changelog.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% load i18n lazysignup_tags %} +{% block content %} + +

Changelog

+
+ +
08.01.2018
+
+ Autorefresh added to job status page and job index page. +
+ +
+ Changelog page added. +
+ + +
+ +{% endblock %} \ No newline at end of file diff --git a/django_simple/urls.py b/django_simple/urls.py index bad475c..302164a 100644 --- a/django_simple/urls.py +++ b/django_simple/urls.py @@ -25,5 +25,8 @@ urlpatterns = [ url(r'^input', TemplateView.as_view(template_name='input.html'), name='input'), + url(r'^changelog', + TemplateView.as_view(template_name='changelog.html'), + name='changelog'), ]