django 데이터 관리 플랫폼 업데이트 설명 2016 1122

1719 단어
새로운 기능 설명
  • 사용자 정의 홈 페이지 계기판 및 작은 부품 레이아웃 및 내용
  • 데이터 도표 전시
  • 데이터 내 보 내기, 파일 내 보 내기: EXCEL, CSV, XML, JSON
  • 인 라인 실시 간 데이터 편집
  • 페이지 정시 리 셋
  • 문제 및 회피 방법
  • 사용자 가 비밀 번 호 를 수정 하 는 페이지 BUG 가 존재 하기 때문에 자신의 비밀 번 호 를 꼭 기억 하 세 요. 자신의 비밀 번 호 를 꼭 기억 하 세 요. 자신의 비밀 번 호 를 꼭 기억 하 세 요
  • #   xadmin     TEMPLATE_CONTEXT_PROCESSORS setting    ,TEMPLATE_CONTEXT_PROCESSORS setting      
    
    TEMPLATE_CONTEXT_PROCESSORS = (
    
     'django.contrib.auth.context_processors.auth',
    
     'django.core.context_processors.auth'
    
     'django.core.context_processors.debug',
    
     'django.core.context_processors.media',
    
     'django.core.context_processors.static',
    
     'django.core.context_processors.tz',
    
     'django.contrib.messages.context_processors.messages',
    
     'learn_models.context_processors.test',
    
    )
    
    #xadmin.sites        
    
    def check_dependencies(self):
    
     """
    
         xadmin            
    
              *ContentType*           
    
     """
    
     from django.contrib.contenttypes.models import ContentType
    
     if not ContentType._meta.installed:
    
     raise ImproperlyConfigured("Put 'django.contrib.contenttypes' in "
    
     "your INSTALLED_APPS setting in order to use the admin application.")
    
     if not ('django.contrib.auth.context_processors.auth' in settings.TEMPLATE_CONTEXT_PROCESSORS or
    
     'django.core.context_processors.auth' in settings.TEMPLATE_CONTEXT_PROCESSORS):
    
     raise ImproperlyConfigured("Put 'django.contrib.auth.context_processors.auth' "
    
     "in your TEMPLATE_CONTEXT_PROCESSORS setting in order to use the admin application.")
    

    좋은 웹페이지 즐겨찾기