zoukankan      html  css  js  c++  java
  • django之创建第9个项目-管理后台admin

    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:djangowebhelloworldhelloworldurls文件
    # -*- 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:djangowebhelloworld>manage.py createsuperuser
    Username (leave blank to use 'administrator'): xiaodeng#创建用户名
    Email address:#不用创建则直接回车
    Password:#输入密码,这里输入密码之后是看不到的,我默认输出了6个1
    Password (again):
    Superuser created successfully.

    c:djangowebhelloworld>


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

    百度云盘:django之创建第9个项目-管理后台admin

  • 相关阅读:
    VS2010不能引用System.Data.OracleClient解决方法(转)
    stdafx.h的作用(转载)
    生成缩略图
    java 泛型 入门
    itext库产生word文档示例(.doc)
    json(在JSP中) 应用实例
    C/C++ 指针应用 常见问题
    Java RTTI 和 反射机制
    Hibernate DAO类三个函数:merge() attachDirty() attachClean()
    HTTPSession 简介
  • 原文地址:https://www.cnblogs.com/dengyg200891/p/5355913.html
Copyright © 2011-2022 走看看