From 85549cc98d726f689e93ddbd20d6b25e7ff7b4b1 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 21 Aug 2011 03:16:54 +0200 Subject: graph some stuff from the spiral website --- budget/templates/home.html | 45 +++++++++++++++++++++++++++----------------- budget/templates/layout.html | 3 +++ 2 files changed, 31 insertions(+), 17 deletions(-) (limited to 'budget/templates') diff --git a/budget/templates/home.html b/budget/templates/home.html index 7cead45..f29ae30 100644 --- a/budget/templates/home.html +++ b/budget/templates/home.html @@ -1,26 +1,37 @@ {% extends "layout.html" %} -{% block sidebar %} -{% include "recent_projects.html" %} + +{% block sidebar_wrapper %}{% endblock %} + +{% block header %} + {% endblock %} -{% block content %} +{% block container %} +
+
-

Welcome on your budget manager

-

You're sharing a house? are going on holidays with friends? are simply sharing money with others? We can help!

-
-
-
-

Log to an existing project...

- {{ forms.authenticate(auth_form) }} -
+

Welcome on your budget manager

+

You're sharing a house? are going on holidays with friends? are simply sharing money with others? We can help!

+
+
+
+

Log to an existing project...

+ {{ forms.authenticate(auth_form) }} +
+
+
+
+

...or create a new one

+ {{ forms.create_project(project_form) }}
+ +
-
-
-

...or create a new one

- {{ forms.create_project(project_form) }}
-
- {% endblock %} diff --git a/budget/templates/layout.html b/budget/templates/layout.html index d1b63a9..328b392 100644 --- a/budget/templates/layout.html +++ b/budget/templates/layout.html @@ -67,6 +67,8 @@ {% endif %}
+{% block header %}{% endblock %} +{% block container %}
@@ -77,6 +79,7 @@ {% endblock %}
+{% endblock %} -- cgit v1.1