Hi, I'm trying to leave my own views and use the generic, everything
works fine if I want to create, the generic view creates it, but after
create, it send me to an url that gives me error, and I don't know
which url is. The same happens when I try to change an existing object,
it changes in the DataBase, but after changing, it send me to another
redirect page...and guess, error again. I think if I fix the create
view, the  update view automatically will be fixed too. My files are:

------------ urls.py --------------------

from django.conf.urls.defaults import *
from dutcheDjango.formProject.models import Place


info_dict = {
  'model': Place
}

urlpatterns = patterns('django.views.generic.create_update',
                     (r'^$', 'create_object',info_dict),
                     (r'^edit/(?P<object_id>\d+)/$',
'update_object',info_dict),
)

----------- urls.py (end) -----------


The traceback error:



ImproperlyConfigured at /formProject/edit/3/
No URL to redirect to from generic create view.
Request Method:         POST
Request URL:    http://localhost:8000/formProject/edit/3/
Exception Type:         ImproperlyConfigured
Exception Value:        No URL to redirect to from generic create view.
Exception Location:
        
/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/views/generic/create_update.py
in update_object, line 123
Traceback (innermost last)
Switch to copy-and-paste view

   *
/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/handlers/base.py
in get_response
       67. # Apply view middleware
       68. for middleware_method in self._view_middleware:
       69. response = middleware_method(request, callback,
callback_args, callback_kwargs)
       70. if response:
       71. return response
       72.
       73. try:
       74. response = callback(request, *callback_args,
**callback_kwargs) ...
       75. except Exception, e:
       76. # If the view raised an exception, run it through exception
       77. # middleware, and if the exception middleware returns a
       78. # response, use that. Otherwise, reraise the exception.
       79. for middleware_method in self._exception_middleware:
       80. response = middleware_method(request, e)
       Local vars
     Variable   Value
     callback
     <function update_object at 0xa6f2e064>
     callback_args
     ()
     callback_kwargs
     {'model': <class 'dutcheDjango.formProject.models.Place'>,
'object_id': '3'}
     e
     <django.core.exceptions.ImproperlyConfigured instance at
0xa6f8570c>
     exceptions
     <module 'django.core.exceptions' from
'/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/exceptions.pyc'>
     mail_admins
     <function mail_admins at 0xa6f7925c>
     middleware_method
     <bound method XViewMiddleware.process_view of
<django.middleware.doc.XViewMiddleware object at 0xa6f7d5ec>>
     path
     '/formProject/edit/3/'
     request
     <WSGIRequest GET:<MultiValueDict: {}>, POST:<MultiValueDict:
{'city': ['Sao Paulo'], 'name': ['Eduardo'], 'place_type': ['3'],
'state': ['NY'], 'address': ['Av Boturussu 323'], 'zip_code':
['ayyyy']}>, COOKIES:{'sessionid': '332abd35614bc8aaee6700c873942ea8'},
META:{'COLORTERM': 'gnome-terminal', 'CONTENT_LENGTH': '89',
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
'DBUS_SESSION_BUS_ADDRESS':
'unix:abstract=/tmp/dbus-LMctmHU3tW,guid=3b5e9245850ac399578808c2f9d3ea00',
'DESKTOP_SESSION': 'gnome', 'DISPLAY': ':0.0',
'DJANGO_SETTINGS_MODULE': 'dutcheDjango.settings', 'GATEWAY_INTERFACE':
'CGI/1.1', 'GDMSESSION': 'gnome', 'GDM_XSERVER_LOCATION': 'local',
'GNOME_DESKTOP_SESSION_ID': 'Default', 'GNOME_KEYRING_SOCKET':
'/tmp/keyring-XpJ4cV/socket', 'GTK_RC_FILES':
'/etc/gtk/gtkrc:/home/dutche/.gtkrc-1.2-gnome2', 'HISTCONTROL':
'ignoredups', 'HOME': '/home/dutche', 'HTTP_ACCEPT':
'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5',
'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_CONNECTION':
'keep-alive', 'HTTP_COOKIE':
'sessionid=332abd35614bc8aaee6700c873942ea8', 'HTTP_HOST':
'localhost:8000', 'HTTP_KEEP_ALIVE': '300', 'HTTP_REFERER':
'http://localhost:8000/formProject/edit/3/', 'HTTP_USER_AGENT':
'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060928
(Debian-1.8.0.7-1) Epiphany/2.14', 'LANG': 'en_US', 'LANGUAGE':
'en_BR:en_US:en_GB:en', 'LD_LIBRARY_PATH':
'/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib', 'LESSCLOSE':
'/usr/bin/lesspipe %s %s', 'LESSOPEN': '| /usr/bin/lesspipe %s',
'LOGNAME': 'dutche', 'LS_COLORS':
'no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.flac=01;35:*.mp3=01;35:*.mpc=01;35:*.ogg=01;35:*.wav=01;35:',
'ORACLE_HOME': '/usr/lib/oracle/xe/app/oracle/product/10.2.0/server',
'PATH':
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin',
'PATH_INFO': '/formProject/edit/3/', 'PWD':
'/home/dutche/dutcheDjango', 'QUERY_STRING': '', 'REMOTE_ADDR':
'127.0.0.1', 'REMOTE_HOST': 'localhost.localdomain', 'REQUEST_METHOD':
'POST', 'RUN_MAIN': 'true', 'SCRIPT_NAME': '', 'SERVER_NAME':
'localhost.localdomain', 'SERVER_PORT': '8000', 'SERVER_PROTOCOL':
'HTTP/1.1', 'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.4.4c0',
'SESSION_MANAGER': 'local/du:/tmp/.ICE-unix/4480', 'SHELL':
'/bin/bash', 'SHLVL': '1', 'SSH_AGENT_PID': '4525', 'SSH_AUTH_SOCK':
'/tmp/ssh-LEKOjC4480/agent.4480', 'TERM': 'xterm', 'TZ':
'America/Sao_Paulo', 'USER': 'dutche', 'USERNAME': 'dutche',
'WINDOWID': '16777432', 'XAUTHORITY': '/home/dutche/.Xauthority', '_':
'/usr/bin/python', 'wsgi.errors': <open file '<stderr>', mode 'w' at
0xa7e1c0b0>, 'wsgi.file_wrapper': <class
'django.core.servers.basehttp.FileWrapper'>, 'wsgi.input':
<socket._fileobject object at 0xa6fed80c>, 'wsgi.multiprocess': False,
'wsgi.multithread': True, 'wsgi.run_once': False, 'wsgi.url_scheme':
'http', 'wsgi.version': (1, 0)}>
     resolver
     <django.core.urlresolvers.RegexURLResolver object at 0xa6f7d56c>
     response
     None
     self
     <django.core.handlers.wsgi.WSGIHandler object at 0xa7a9598c>
     settings
     <django.conf.LazySettings object at 0xa7d7a66c>
     urlresolvers
     <module 'django.core.urlresolvers' from
'/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/urlresolvers.pyc'>
   *
/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/views/generic/create_update.py
in update_object
      116. request.user.message_set.create(message="The %s was updated
successfully." % model._meta.verbose_name)
      117. # Do a post-after-redirect so that reload works, etc.
      118. if post_save_redirect:
      119. return HttpResponseRedirect(post_save_redirect %
object.__dict__)
      120. elif hasattr(object, 'get_absolute_url'):
      121. return HttpResponseRedirect(object.get_absolute_url())
      122. else:
      123. raise ImproperlyConfigured("No URL to redirect to from
generic create view.") ...
      124. else:
      125. errors = {}
      126. # This makes sure the form acurate represents the fields of
the place.
      127. new_data = manipulator.flatten_data()
      128.
      129. form = forms.FormWrapper(manipulator, new_data, errors)
       Local vars
     Variable   Value
     context_processors
     None
     errors
     {}
     extra_context
     {}
     follow
     None
     login_required
     False
     lookup_kwargs
     {'id__exact': '3'}
     manipulator
     <django.db.models.manipulators.ChangeManipulator object at
0xa6f7d80c>
     model
     <class 'dutcheDjango.formProject.models.Place'>
     new_data
     <MultiValueDict: {'city': ['Sao Paulo'], 'name': ['Eduardo'],
'place_type': ['3'], 'state': ['NY'], 'address': ['Av Boturussu 323'],
'zip_code': ['ayyyy']}>
     object
     <Place: Eduardo>
     object_id
     '3'
     post_save_redirect
     None
     request
     <WSGIRequest GET:<MultiValueDict: {}>, POST:<MultiValueDict:
{'city': ['Sao Paulo'], 'name': ['Eduardo'], 'place_type': ['3'],
'state': ['NY'], 'address': ['Av Boturussu 323'], 'zip_code':
['ayyyy']}>, COOKIES:{'sessionid': '332abd35614bc8aaee6700c873942ea8'},
META:{'COLORTERM': 'gnome-terminal', 'CONTENT_LENGTH': '89',
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
'DBUS_SESSION_BUS_ADDRESS':
'unix:abstract=/tmp/dbus-LMctmHU3tW,guid=3b5e9245850ac399578808c2f9d3ea00',
'DESKTOP_SESSION': 'gnome', 'DISPLAY': ':0.0',
'DJANGO_SETTINGS_MODULE': 'dutcheDjango.settings', 'GATEWAY_INTERFACE':
'CGI/1.1', 'GDMSESSION': 'gnome', 'GDM_XSERVER_LOCATION': 'local',
'GNOME_DESKTOP_SESSION_ID': 'Default', 'GNOME_KEYRING_SOCKET':
'/tmp/keyring-XpJ4cV/socket', 'GTK_RC_FILES':
'/etc/gtk/gtkrc:/home/dutche/.gtkrc-1.2-gnome2', 'HISTCONTROL':
'ignoredups', 'HOME': '/home/dutche', 'HTTP_ACCEPT':
'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5',
'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
'HTTP_ACCEPT_ENCODING': 'gzip,deflate', 'HTTP_CONNECTION':
'keep-alive', 'HTTP_COOKIE':
'sessionid=332abd35614bc8aaee6700c873942ea8', 'HTTP_HOST':
'localhost:8000', 'HTTP_KEEP_ALIVE': '300', 'HTTP_REFERER':
'http://localhost:8000/formProject/edit/3/', 'HTTP_USER_AGENT':
'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060928
(Debian-1.8.0.7-1) Epiphany/2.14', 'LANG': 'en_US', 'LANGUAGE':
'en_BR:en_US:en_GB:en', 'LD_LIBRARY_PATH':
'/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib', 'LESSCLOSE':
'/usr/bin/lesspipe %s %s', 'LESSOPEN': '| /usr/bin/lesspipe %s',
'LOGNAME': 'dutche', 'LS_COLORS':
'no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.flac=01;35:*.mp3=01;35:*.mpc=01;35:*.ogg=01;35:*.wav=01;35:',
'ORACLE_HOME': '/usr/lib/oracle/xe/app/oracle/product/10.2.0/server',
'PATH':
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin',
'PATH_INFO': '/formProject/edit/3/', 'PWD':
'/home/dutche/dutcheDjango', 'QUERY_STRING': '', 'REMOTE_ADDR':
'127.0.0.1', 'REMOTE_HOST': 'localhost.localdomain', 'REQUEST_METHOD':
'POST', 'RUN_MAIN': 'true', 'SCRIPT_NAME': '', 'SERVER_NAME':
'localhost.localdomain', 'SERVER_PORT': '8000', 'SERVER_PROTOCOL':
'HTTP/1.1', 'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.4.4c0',
'SESSION_MANAGER': 'local/du:/tmp/.ICE-unix/4480', 'SHELL':
'/bin/bash', 'SHLVL': '1', 'SSH_AGENT_PID': '4525', 'SSH_AUTH_SOCK':
'/tmp/ssh-LEKOjC4480/agent.4480', 'TERM': 'xterm', 'TZ':
'America/Sao_Paulo', 'USER': 'dutche', 'USERNAME': 'dutche',
'WINDOWID': '16777432', 'XAUTHORITY': '/home/dutche/.Xauthority', '_':
'/usr/bin/python', 'wsgi.errors': <open file '<stderr>', mode 'w' at
0xa7e1c0b0>, 'wsgi.file_wrapper': <class
'django.core.servers.basehttp.FileWrapper'>, 'wsgi.input':
<socket._fileobject object at 0xa6fed80c>, 'wsgi.multiprocess': False,
'wsgi.multithread': True, 'wsgi.run_once': False, 'wsgi.url_scheme':
'http', 'wsgi.version': (1, 0)}>
     slug
     None
     slug_field
     None
     template_loader
     <module 'django.template.loader' from
'/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/template/loader.pyc'>
     template_name
     None
     template_object_name
     'object'

Traceback (most recent call last):
File
"/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/handlers/base.py"
in get_response
 74. response = callback(request, *callback_args, **callback_kwargs)
File
"/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/views/generic/create_update.py"
in update_object
 123. raise ImproperlyConfigured("No URL to redirect to from generic
create view.")

 ImproperlyConfigured at /formProject/edit/3/
 No URL to redirect to from generic create view.
Request information
GET

No GET data
POST
Variable        Value
city
'Sao Paulo'
name
'Eduardo'
place_type
'3'
state
'NY'
address
'Av Boturussu 323'
zip_code
'ayyyy'
COOKIES
Variable        Value
sessionid
'332abd35614bc8aaee6700c873942ea8'
META
Variable        Value
COLORTERM
'gnome-terminal'
CONTENT_LENGTH
'89'
CONTENT_TYPE
'application/x-www-form-urlencoded'
DBUS_SESSION_BUS_ADDRESS
'unix:abstract=/tmp/dbus-LMctmHU3tW,guid=3b5e9245850ac399578808c2f9d3ea00'
DESKTOP_SESSION
'gnome'
DISPLAY
':0.0'
DJANGO_SETTINGS_MODULE
'dutcheDjango.settings'
GATEWAY_INTERFACE
'CGI/1.1'
GDMSESSION
'gnome'
GDM_XSERVER_LOCATION
'local'
GNOME_DESKTOP_SESSION_ID
'Default'
GNOME_KEYRING_SOCKET
'/tmp/keyring-XpJ4cV/socket'
GTK_RC_FILES
'/etc/gtk/gtkrc:/home/dutche/.gtkrc-1.2-gnome2'
HISTCONTROL
'ignoredups'
HOME
'/home/dutche'
HTTP_ACCEPT
'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5'
HTTP_ACCEPT_CHARSET
'ISO-8859-1,utf-8;q=0.7,*;q=0.7'
HTTP_ACCEPT_ENCODING
'gzip,deflate'
HTTP_CONNECTION
'keep-alive'
HTTP_COOKIE
'sessionid=332abd35614bc8aaee6700c873942ea8'
HTTP_HOST
'localhost:8000'
HTTP_KEEP_ALIVE
'300'
HTTP_REFERER
'http://localhost:8000/formProject/edit/3/'
HTTP_USER_AGENT
'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060928
(Debian-1.8.0.7-1) Epiphany/2.14'
LANG
'en_US'
LANGUAGE
'en_BR:en_US:en_GB:en'
LD_LIBRARY_PATH
'/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib'
LESSCLOSE
'/usr/bin/lesspipe %s %s'
LESSOPEN
'| /usr/bin/lesspipe %s'
LOGNAME
'dutche'
LS_COLORS
'no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.flac=01;35:*.mp3=01;35:*.mpc=01;35:*.ogg=01;35:*.wav=01;35:'
ORACLE_HOME
'/usr/lib/oracle/xe/app/oracle/product/10.2.0/server'
PATH
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin'
PATH_INFO
'/formProject/edit/3/'
PWD
'/home/dutche/dutcheDjango'
QUERY_STRING
''
REMOTE_ADDR
'127.0.0.1'
REMOTE_HOST
'localhost.localdomain'
REQUEST_METHOD
'POST'
RUN_MAIN
'true'
SCRIPT_NAME
''
SERVER_NAME
'localhost.localdomain'
SERVER_PORT
'8000'
SERVER_PROTOCOL
'HTTP/1.1'
SERVER_SOFTWARE
'WSGIServer/0.1 Python/2.4.4c0'
SESSION_MANAGER
'local/du:/tmp/.ICE-unix/4480'
SHELL
'/bin/bash'
SHLVL
'1'
SSH_AGENT_PID
'4525'
SSH_AUTH_SOCK
'/tmp/ssh-LEKOjC4480/agent.4480'
TERM
'xterm'
TZ
'America/Sao_Paulo'
USER
'dutche'
USERNAME
'dutche'
WINDOWID
'16777432'
XAUTHORITY
'/home/dutche/.Xauthority'
_
'/usr/bin/python'
wsgi.errors
<open file '<stderr>', mode 'w' at 0xa7e1c0b0>
wsgi.file_wrapper
<class 'django.core.servers.basehttp.FileWrapper'>
wsgi.input
<socket._fileobject object at 0xa6fed80c>
wsgi.multiprocess
False
wsgi.multithread
True
wsgi.run_once
False
wsgi.url_scheme
'http'
wsgi.version
(1, 0)
Settings
Using settings module dutcheDjango.settings
Setting         Value
ABSOLUTE_URL_OVERRIDES
{}
ADMINS
()
ADMIN_FOR
()
ADMIN_MEDIA_PREFIX
'/media/'
ALLOWED_INCLUDE_ROOTS
()
APPEND_SLASH
True
AUTHENTICATION_BACKENDS
('django.contrib.auth.backends.ModelBackend',)
BANNED_IPS
()
CACHE_BACKEND
'simple://'
CACHE_MIDDLEWARE_KEY_PREFIX
''
COMMENTS_ALLOW_PROFANITIES
False
COMMENTS_BANNED_USERS_GROUP
None
COMMENTS_FIRST_FEW
0
COMMENTS_MODERATORS_GROUP
None
COMMENTS_SKETCHY_USERS_GROUP
None
DATABASE_ENGINE
'postgresql'
DATABASE_HOST
'localhost'
DATABASE_NAME
'dutcheDjango'
DATABASE_PASSWORD
'********************'
DATABASE_PORT
'5432'
DATABASE_USER
'postgres'
DATETIME_FORMAT
'N j, Y, P'
DATE_FORMAT
'N j, Y'
DEBUG
True
DEFAULT_CHARSET
'utf-8'
DEFAULT_CONTENT_TYPE
'text/html'
DEFAULT_FROM_EMAIL
'[EMAIL PROTECTED]'
DISALLOWED_USER_AGENTS
()
EMAIL_HOST
'localhost'
EMAIL_HOST_PASSWORD
'********************'
EMAIL_HOST_USER
''
EMAIL_PORT
25
EMAIL_SUBJECT_PREFIX
'[Django] '
ENABLE_PSYCO
False
IGNORABLE_404_ENDS
('mail.pl', 'mailform.pl', 'mail.cgi', 'mailform.cgi', 'favicon.ico',
'.php')
IGNORABLE_404_STARTS
('/cgi-bin/', '/_vti_bin', '/_vti_inf')
INSTALLED_APPS
['django.contrib.auth', 'django.contrib.contenttypes',
'django.contrib.sessions', 'django.contrib.sites',
'dutcheDjango.polls', 'dutcheDjango.teste', 'dutcheDjango.djproject',
'dutcheDjango.formProject', 'django.contrib.admin']
INTERNAL_IPS
()
JING_PATH
'/usr/bin/jing'
LANGUAGES
(('ar', 'Arabic'), ('bn', 'Bengali'), ('cs', 'Czech'), ('cy', 'Welsh'),
('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'),
('es', 'Spanish'), ('es_AR', 'Argentinean Spanish'), ('fr', 'French'),
('gl', 'Galician'), ('hu', 'Hungarian'), ('he', 'Hebrew'), ('is',
'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('nl', 'Dutch'),
('no', 'Norwegian'), ('pt-br', 'Brazilian'), ('ro', 'Romanian'), ('ru',
'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sr', 'Serbian'),
('sv', 'Swedish'), ('ta', 'Tamil'), ('uk', 'Ukrainian'), ('zh-cn',
'Simplified Chinese'), ('zh-tw', 'Traditional Chinese'))
LANGUAGES_BIDI
('he', 'ar')
LANGUAGE_CODE
'pt-br'
MANAGERS
()
MEDIA_ROOT
''
MEDIA_URL
''
MIDDLEWARE_CLASSES
('django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.middleware.doc.XViewMiddleware')
MONTH_DAY_FORMAT
'F j'
PREPEND_WWW
False
ROOT_URLCONF
'dutcheDjango.urls'
SECRET_KEY
'********************'
SEND_BROKEN_LINK_EMAILS
False
SERVER_EMAIL
'[EMAIL PROTECTED]'
SESSION_COOKIE_AGE
1209600
SESSION_COOKIE_DOMAIN
None
SESSION_COOKIE_NAME
'sessionid'
SESSION_EXPIRE_AT_BROWSER_CLOSE
False
SESSION_SAVE_EVERY_REQUEST
False
SETTINGS_MODULE
'dutcheDjango.settings'
SITE_ID
1
TEMPLATE_CONTEXT_PROCESSORS
('django.core.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n')
TEMPLATE_DEBUG
True
TEMPLATE_DIRS
('/home/dutche/dutcheDjango/templates',)
TEMPLATE_LOADERS
('django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source')
TEMPLATE_STRING_IF_INVALID
''
TIME_FORMAT
'P'
TIME_ZONE
'America/Sao_Paulo'
TRANSACTIONS_MANAGED
False
USE_ETAGS
False
USE_I18N        
True
YEAR_MONTH_FORMAT       
'F Y'




Thanks!!!


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to