• 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

  • 相关阅读:
    1-22
    好久未更
    学习进度条 第十六周
    构建之法阅读笔记06
    返回一个整数数组中最大子数组的和(补充:输出该子数组)
    构建执法阅读笔记4
    第三周的学习进度情况
    构建之法阅读笔记03
    四则运算三
    安卓小程序之“标准体重计算器”
  • 原文地址:https://www.cnblogs.com/dengyg200891/p/5355913.html
Copyright © 2020-2023  润新知