파이썬/Django(108)
-
같은 위치의 다른 파일을 호출 할 경우, '.' 또는 '현재 디렉토리명' 사용 가능
현재 디록토리 : /gantt from . import views from gantt import views
2021.01.15 -
Tag LIbrary 주석
한줄 : {# #} 여러줄 {% comment %} {% endcomment %}
2021.01.15 -
tag library 참조
(BOOK) 4. Django의 핵심 기능 - 템플릿 시스템 - Frontend Development - Different (diffthink.kr) (BOOK) 4. Django의 핵심 기능 - 템플릿 시스템 - Frontend Development - Different Django의 핵심 기능 - 템플릿 시스템 템플릿 시스템 장고의 M(Model) T(Template) V(View) 모델 에서 UI(User Interface)를 담당하고 있는 기능 인 Template 에 대한 내용이다. HTML코드와 파이썬코드가 섞여 있지만, frontend.diffthink.kr 13. Django 템플릿 엔진 - 템플릿 태그 (tistory.com) 13. Django 템플릿 엔진 -..
2021.01.15 -
Admin에 자바스크립트 추가
파일 위치 : /static/js/*.js [admin.py] class GanttInline(admin.TabularInline) : ... class Media : js = ( 'https://code.jquery.com/jquery-latest.min.js', 'js/work.js' )
2021.01.15 -
Admin CSS, JS, 탬플릿 파일 overwrite
static/admin/css static/admin/js templates/admin [settings.py]에 'templates' 추가 TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [BASE_DIR, 'templates'], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib...
2021.01.15 -
Django 소스(설치) 위치 찾기
python -c "import django; print(django.__path__) python -c "import django; print(django.__path__[0].replace('\\','/'))
2021.01.15