Top "Django-1.9" questions

Django 1.9 is a version of the Django framework, released December 2015.

"Unknown command syncdb" running "python manage.py syncdb"

I want to create the tables of one database called "database1.sqlite", so I run the command: python manage.py …

django sqlite python-3.x django-1.9
Django 1.9 ImportError for import_module

When trying to run either runserver or shell using manage.py I get an ImportError exception. I'm using Django 1.9. ImportError: …

python django django-1.9
ModuleNotFoundError: No module named 'django.urls'

Whenever I try to run "python manage.py runserver" in Powershell as admin, I get an ModuleNotFoundError: No module named …

python-3.6 django-1.9
ImportError: cannot import name generic

I am working with eav-django(entity-attribute-value) in django 1.9. Whenever I was executing the command ./manage.py runserver , I got the …

python django generics django-1.9
New url format in Django 1.9

I recently upgraded my Django project to version 1.9. When I try to run migrate, I am getting the following two …

django django-urls django-1.9
Django 1.9: Field clashes with the field of non-existing field in parent model

I have some simple models, Profile, Certifier and Designer, the two latter inheriting from Profile (multi table inheritance). In Designer …

django name-clash multi-table-inheritance django-1.9
Django 1.9 drop foreign key in migration

I have a Django model that has a foreign key to another model: class Example(models.Model) something = models.ForeignKey(…

django foreign-keys database-migration django-1.9
AttributeError: 'str' object has no attribute 'regex' django 1.9

I am working with django 1.9 and I am currently coding - in Windows Command Prompt - python manage.py makemigrations …

python django windows django-1.9
Converting GET request parameter to int ... if it is numeric

lets say i'm showing some data to user , i want user to be able to perform some sort of filtering …

python django python-3.x django-1.9
Django URL without trailing slash not working

This is a silly problem. I just created a project and have been trying to figure out this problem. from …

python django python-2.7 url django-1.9