NameError: name 'admin' is not defined 解决问题的方法
步骤:1、修改settings.py。在INSTALLED_APPS设置中添加“django.contrib.admin”。2、运行python manage.py syncdb更新数据库3、修改urls.py。改为:# Uncomment the next two lines to enable the admin:from django.contrib import...