파이썬(156)
-
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 -
접속 호스트 셋팅 방법
setting.py에 아래와 같이 정의되어 있으면, 127.0.0.1로 접속시 접속 안됨 ALLOWED_HOSTS = ['localhost'] 127.0.0.1을 아래와 같이 추가해야 접속이 됨 ALLOWED_HOSTS = ['localhost','127.0.0.1']
2021.01.15