Variable Base Template

2009-06-08 Thread pingwin
Hi, This is frustrating and against a true MVC methodology. I want to have something like this for the designer in the template. {% if user.is_authenticated %} {% extends "auth_base.html" %} {% else %} {% extends "base.html" %} {% endif %} However this obviously fails. I do not think it mak

Re: Variable Base Template

2009-06-08 Thread Alex Gaynor
On Mon, Jun 8, 2009 at 3:19 PM, pingwin wrote: > > Hi, > > This is frustrating and against a true MVC methodology. I want to have > something like this for the designer in the template. > > {% if user.is_authenticated %} > {% extends "auth_base.html" %} > {% else %} > {% extends "base.html" %}