0
I’m following some video lessons about Django to make some changes to a project started some time by someone else. However, when starting a new app in this project with the command
django-admin start app mad
the files are created: __init__.py
, models.py
, testes.py
and views.py
, but not the admin.py
.
My version of Django is 1.3.4 and Python 2.7
What to do in this case? I can create the file manually, or it is possible there is something wrong in the settings?
Perfect, as I could see here looks like it is created by default from version 1.6. I created the file manually and added the line you said and it worked perfectly. .
– Wilker