发表于 2017-4-26 11:18:21

python django | django-groundwork

django (1.5)

1. python manage.py groundwork appname Modelname
2. move contents of the new 'urls.py' file to the project's 'urls.py', then delete the former file
3. remove the new 'settings.py' file as well

!!!
4. remember to add the path of your templates directory to 'TEMPLATE_DIRS' in the project's 'settings.py' file
5. add 'django-groundwork' in the settings.py file {InSTALLED_APPS}

if errors about the django version and something like 'url' should not be empty...
then the htmls should be checked, the problems are about the single quotation marks!

{% url depotapp.views.view_product item.id%}

{% url 'depotapp.views.view_product' item.id%}
页: [1]
查看完整版本: python django | django-groundwork