python學習之--Django--Django的管理介面

來源:互聯網
上載者:User

標籤:python   django   

admin介面的路徑,通常在my_project中已經設定好了,使用django-admin.py startproject my_project

在目錄下的urls.py檔案中可以看到

from django.conf.urls import include, urlfrom django.contrib import adminurlpatterns = [    # Examples:    # url(r'^$', 'my_project.views.home', name='home'),    # url(r'^blog/', include('blog.urls')),    url(r'^admin/', include(admin.site.urls)),    url(r'^$', 'my_project.views.first_page'),    url(r'^app1/', include('app1.urls')),]
將資料模型Student交給admin管理介面管理,需要在admin中註冊該model

在該app的admin.py中加上:

from django.contrib import adminfrom app1.models import Student# Register your models here.admin.site.register(Student)

訪問http://localhost:8000/admin/

登陸之後就可以管理我們的model了

可以看到還可以系統管理使用者和組


介面的漢化很簡單,只需要將setting.py中的 LANGUAGE_CODE = ‘en-us‘ 修改為 zh-cn 



python學習之--Django--Django的管理介面

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.