Re: template syntax errors in production admin site (version problem?)

2010-09-30 Thread Karen Tracey
On Thu, Sep 30, 2010 at 12:39 PM, bobbymanuel wrote: > PROBLEM SOLVED: upgrade to Python 2.7 on server resolved issue. > Apparrently Django 1.2.3 is not fully compatible with Python 2.5 > I suspect it is your application code, not Django 1.2.3, that is not compatible with Python 2.5. The error y

Re: template syntax errors in production admin site (version problem?)

2010-09-30 Thread bobbymanuel
PROBLEM SOLVED: upgrade to Python 2.7 on server resolved issue. Apparrently Django 1.2.3 is not fully compatible with Python 2.5 On Sep 30, 11:28 am, bobbymanuel wrote: > interesting idea - but unfortunately, not it. > > i actually made a copy of admin.contrib.templates and fixed the syntax > th

Re: template syntax errors in production admin site (version problem?)

2010-09-30 Thread bobbymanuel
interesting idea - but unfortunately, not it. i actually made a copy of admin.contrib.templates and fixed the syntax that its complaining about, and it starts working. it doesn't like the following syntax : {% url name1 as name2 %} - found in 6 places in admin.contrib.templates it also doesn't l

Re: template syntax errors in production admin site (version problem?)

2010-09-30 Thread Steve Holden
On 9/30/2010 9:50 AM, bobbymanuel wrote: > Hi all - i've got a mysterious problem with my admin templates and I > think its a version problem but can't figure it out. > > The contrib.admin templates seem to be throwing some very crazy > TemplateSyntaxError(s) in many of the admin templates when i

template syntax errors in production admin site (version problem?)

2010-09-30 Thread bobbymanuel
Hi all - i've got a mysterious problem with my admin templates and I think its a version problem but can't figure it out. The contrib.admin templates seem to be throwing some very crazy TemplateSyntaxError(s) in many of the admin templates when i moved my app to my production environment. I'm thi

Re: Template Syntax Errors

2010-07-16 Thread Karen Tracey
On Fri, Jul 16, 2010 at 5:43 AM, Jx wrote: > 129. self._callback = get_callable(self._callback_str) > File "/usr/local/lib/python2.6/dist-packages/django/utils/ > functional.py" in wrapper > 124. result = func(*args) > File "/usr/local/lib/python2.6/dist-packages/django/core

Template Syntax Errors

2010-07-16 Thread Jx
Hi, i'm encountering some weird error in the template of my application. The error enountered was: Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/ base.py" in get_response 100. response = callback(request, *callback_args, **callback_kwargs) Fi