home · contact · privacy
Allow creation of new Todos rather than just adoption from Todo edit view.
[plomtask] / templates / _base.html
1 <!DOCTYPE html>
2 <html>
3 <meta charset="UTF-8">
4 <style>
5 body {
6   font-family: monospace;
7   text-align: left;
8   padding: 0;
9 }
10 input.btn-harmless {
11   color: green;
12 }
13 input.btn-dangerous {
14   color: red;
15 }
16 div.btn-to-right {
17   float: right;
18   text-align: right;
19 }
20 td, th, tr, table {
21   vertical-align: top;
22   margin-top: 1em;
23   padding: 0;
24   border-collapse: collapse;
25 }
26 th, td {
27   padding-right: 1em;
28 }
29 a {
30   color: black;
31 }
32 {% block css %}
33 {% endblock %}
34 </style>
35 <body>
36 <a href="day">today</a>
37 <a href="calendar">calendar</a>
38 <a href="conditions">conditions</a>
39 <a href="processes">processes</a>
40 <a href="todos">todos</a>
41 <hr>
42 {% block content %}
43 {% endblock %}
44 </body>
45 </html>