I was working away happily all day yesterday perfecting my model and
using the admin site for my lookup tables and other configuration (am
planning on using generic/custom views for the main application
tables). It was all working well, I was using manage.py install and
manage.py sqlclear to clean up between tests and must have done this
two dozen times. Today I came to the same app, installed some minor
changes (added help_text to some fields) and when I ran the admin app I
get an exception trying to add a new row to *any* of my tables (the
core/auth tables work fine still). I am running 0.91 on Windows with
SQLite3.

The exception is:

Traceback (most recent call last):

  File "d:\my
projects\python\django-0.91\django\core\servers\basehttp.py", line 272,
in run
    self.result = application(self.environ, self.start_response)

  File "d:\my
projects\python\django-0.91\django\core\servers\basehttp.py", line 615,
in __call__
    return self.application(environ, start_response)

  File "d:\my
projects\python\django-0.91\django\core\handlers\wsgi.py", line 155, in
__call__
    response = self.get_response(request.path, request)

  File "d:\my
projects\python\django-0.91\django\core\handlers\base.py", line 109, in
get_response
    return self.get_technical_error_response(request)

  File "d:\my
projects\python\django-0.91\django\core\handlers\base.py", line 139, in
get_technical_error_response
    return debug.technical_500_response(request, *sys.exc_info())

  File "d:\my projects\python\django-0.91\django\views\debug.py", line
126, in technical_500_response
    return HttpResponseServerError(t.render(c), mimetype='text/html')

  File "d:\my
projects\python\django-0.91\django\core\template\__init__.py", line
146, in render
    return self.nodelist.render(context)

  File "d:\my
projects\python\django-0.91\django\core\template\__init__.py", line
707, in render
    bits.append(self.render_node(node, context))

  File "d:\my
projects\python\django-0.91\django\core\template\__init__.py", line
725, in render_node
    result = node.render(context)

  File "d:\my
projects\python\django-0.91\django\core\template\defaulttags.py", line
112, in render
    nodelist.append(node.render(context))

  File "d:\my
projects\python\django-0.91\django\core\template\defaulttags.py", line
179, in render
    return self.nodelist_true.render(context)

  File "d:\my
projects\python\django-0.91\django\core\template\__init__.py", line
707, in render
    bits.append(self.render_node(node, context))

  File "d:\my
projects\python\django-0.91\django\core\template\__init__.py", line
735, in render_node
    raise wrapped

TemplateSyntaxError: Caught an exception while rendering.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to