From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 27 Mar 2024 00:49:57 +0000 (+0100)
Subject: In template views, add links to Day and Process creation.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/static/%7B%7B%20web_path%20%7D%7D/do_todos?a=commitdiff_plain;h=37ad3f2181d8bacd2a9d48e8fca4ede1e24de6b6;p=plomtask

In template views, add links to Day and Process creation.
---

diff --git a/templates/base.html b/templates/base.html
index e030a02..26c78c5 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -3,6 +3,7 @@
 <meta charset="UTF-8">
 <body>
 <a href="processes">processes</a>
+<a href="day">today</a>
 <a href="calendar">calendar</a>
 <hr>
 {% block content %}
diff --git a/templates/processes.html b/templates/processes.html
index 37de8f8..6dc3e85 100644
--- a/templates/processes.html
+++ b/templates/processes.html
@@ -1,6 +1,7 @@
 {% extends 'base.html' %}
 
 {% block content %}
+<a href="process">add</a>
 <ul>
 {% for process in processes %}
 <li><a href="process?id={{process.id_}}">{{process.title.newest}}</a>