django1.7的admin

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'db.db',                      # Or path to database file if using sqlite3.
        # The following settings are not used with sqlite3:
        'USER': '',
        'PASSWORD': '',
        'HOST': '',                      # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
        'PORT': '',                      # Set to empty string for default.
    }
}

写出ENGINE和NAME,后面的注释很好的说明了

LANGUAGE_CODE = 'zh-cn'

这行代码可以把界面中文化

INSTALLED_APPS = (
    
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
)

记得把这行代码前面的 # 号去掉

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('',
    # Examples:
    # url(r'^$', 'aditu.views.home', name='home'),
    # url(r'^aditu/', include('aditu.foo.urls')),

    # 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)),
)

这里有3个地方要去掉注释。

你可能感兴趣的:(django1.7的admin)