From 4829e9cdac630739c893aea289c3cba17e238906 Mon Sep 17 00:00:00 2001 From: baptistapedro Date: Thu, 28 May 2015 11:26:17 +0100 Subject: [PATCH] Update usage.txt --- docs/usage.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/usage.txt b/docs/usage.txt index a204fa7..0121c2e 100644 --- a/docs/usage.txt +++ b/docs/usage.txt @@ -50,6 +50,15 @@ the name ``base.html`` exists which defines a block ``content`` and a block concerns, it's very easy to provide your own templates. Please see the :ref:`customization docs ` fore more details. +the user needs to add 'base.html' template to his template dir +(where contains all other templates like login.html, home.html, etc.) +on the 'base.html', in my case when I replaced {% extends "base.html" %} for +{% extends "home.html" %} I was having some problems when submitting the form +in /messages/compose which caused some problems to retrieve the /inbox properly +so I decided to delete that first line {% extends .... %} and everything worked +smoothly. + + Templatetags and Context-Processors -----------------------------------