We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parece que Vilanova tuvo problemas con Django 1.5. En un correo:
Error: direct_to_template has been deprecated. In django 1.5 try using a Class based view in urls.py
Cambiaron en el fichero project/urls.py la linea 4:
project/urls.py
from django.views.generic.simple import direct_to_template
por
from django.views.generic import TemplateView
Y en la línia 60:
url(r'^robots\.txt$', direct_to_template, {'template': 'robots.txt', 'mimetype': 'text/plain'})
The text was updated successfully, but these errors were encountered:
Ver django_jasmine/urls.py para un ejemplo de cómo gestionar distintas versiones de Django:
django_jasmine/urls.py
if django.VERSION >= (1, 5): from django.conf.urls import patterns, url else: from django.conf.urls.defaults import *
Sorry, something went wrong.
Más info sobre los problemas de compatibilidad en este pull request.
No branches or pull requests
Parece que Vilanova tuvo problemas con Django 1.5. En un correo:
Cambiaron en el fichero
project/urls.py
la linea 4:por
Y en la línia 60:
The text was updated successfully, but these errors were encountered: