From f37d464d427e561556e76a1c37a3a74f23b56c97 Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Mon, 8 Jan 2018 21:03:04 +0100 Subject: [PATCH] changelog page added --- django_simple/todo/templates/base.html | 3 ++- django_simple/todo/templates/changelog.html | 21 +++++++++++++++++++++ django_simple/urls.py | 3 +++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 django_simple/todo/templates/changelog.html 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'), ] -- 1.7.9.5