changelog page added
authorCezary Czaplewski <czarek@chem.univ.gda.pl>
Mon, 8 Jan 2018 20:03:04 +0000 (21:03 +0100)
committerCezary Czaplewski <czarek@chem.univ.gda.pl>
Mon, 8 Jan 2018 20:03:04 +0000 (21:03 +0100)
django_simple/todo/templates/base.html
django_simple/todo/templates/changelog.html [new file with mode: 0644]
django_simple/urls.py

index 55e2d39..50f7e14 100644 (file)
@@ -27,7 +27,8 @@
     </div>
     <ul class="nav navbar-nav" >
       <li><a href="/tutorial">Tutorial</a></li>
-      <li><a href="/input">Input data</a></li>            
+      <li><a href="/input">Input data</a></li>
+      <li><a href="/changelog">Changelog</a></li>
       <li><a href="/about">About</a></li>
       <li><a href="/contact">Contact</a></li>
     </ul>
diff --git a/django_simple/todo/templates/changelog.html b/django_simple/todo/templates/changelog.html
new file mode 100644 (file)
index 0000000..49d1e6b
--- /dev/null
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+
+{% load i18n lazysignup_tags %}
+{% block content %}
+
+<h4> Changelog</h4>
+<dl>
+
+<dt>08.01.2018</dt>
+ <dd>
+ Autorefresh added to job status page and job index page.
+ </dd>
+
+ <dd>
+ Changelog page added.
+ </dd>
+
+</dl>
+              
+{% endblock %}
\ No newline at end of file
index bad475c..302164a 100644 (file)
@@ -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'),
 
 ]