您的位置:首页 > 编程语言 > Go语言

django之创建第9个项目-管理后台admin

2016-04-05 17:24 806 查看
django之创建第9个项目-管理后台admin配置

1、配置setting文件
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'django.contrib.admin',#取消掉注释
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'blog',
)

2、配置C:\djangoweb\helloworld\helloworld\urls文件
# -*- coding: UTF-8 -*-
from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('blog.views',
# Uncomment the admin/doc line below to enable admin documentation:
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),#取消掉注释

# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),#取消掉注释
#url(r'^$', 'blog.views.index'),
url(r'^blog/', include("blog.urls")),#浏览器一旦访问blog就定位到blog.urls文件下的url地址
)

3、创建超级用户管理员
c:\djangoweb\helloworld>manage.py createsuperuser
Username (leave blank to use 'administrator'): xiaodeng#创建用户名
Email address:#不用创建则直接回车
Password:#输入密码,这里输入密码之后是看不到的,我默认输出了6个1
Password (again):
Superuser created successfully.

c:\djangoweb\helloworld>

4、启动服务器,c:\djangoweb\helloworld>manage.py runserver
5、打开网页,http://127.0.0.1:8000/admin/
6、登录

百度云盘:django之创建第9个项目-管理后台admin
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: