From 37be0f4fa196de8c160f1ec59978fd3c15a8bf8d Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 31 Jul 2011 15:39:32 +0200 Subject: Theming. Uses uni-form to style forms and add a macro to ease this. Of course, the overall thing has to be reworked, but having this in place will help us to have something easier to change when we will really care about design. All the form templates can now be defined in templates/forms.html and be called thansk to {{ forms.name_of_the_form(form) }}. I've done some styling, but that's really not my thing, feel free to modify it. --- budget/templates/recent_projects.html | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 budget/templates/recent_projects.html (limited to 'budget/templates/recent_projects.html') diff --git a/budget/templates/recent_projects.html b/budget/templates/recent_projects.html new file mode 100644 index 0000000..423db7e --- /dev/null +++ b/budget/templates/recent_projects.html @@ -0,0 +1,8 @@ +{% if 'projects' in session %} +

Recently visisted projects

+ +{% endif %} -- cgit v1.1