django(66)
-
Django 현재 디렉토리 가져오기
장고의 루트 디렉토리가 결과로 나옴 def updateImage() : print(os.getcwd())
2021.01.31 -
Django Admin 함수 오버라이딩
get_queryset(self, request)를 super(ImageAdmin, self).get_queryset(request)로 변경하면 됨 @admin.register(Image) class ImageAdmin(admin.ModelAdmin) : list_display = ['id','file'] inlines = [BoxInline] def get_queryset(self, request): train.updateImage() return super(ImageAdmin, self).get_queryset(request)
2021.01.31 -
Django Admin 화면 로딩시 함수 자동 실행
1. Admin에서 Image 모델의 리스트 화면이 로딩될때, get_queryset()이 매번 호출됨 2. train.updateImage()를 리스트 화면이 호출될 때마다 실행될 수 있도록 함수를 다시 정의 @admin.register(Image) class ImageAdmin(admin.ModelAdmin) : list_display = ['id','file'] inlines = [BoxInline] def get_queryset(self, request): train.updateImage() return super(ImageAdmin, self).get_queryset(request)
2021.01.31 -
Django Admin 템플릿에서 모델타입 체크 방법
{% if opts.model_name == 'image' %} asdfadf {% endif %}
2021.01.31 -
Django Built-in template tags and filters
Built-in template tags and filters | Django 문서 | Django (djangoproject.com) Built-in template tags and filters | Django 문서 | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com
2021.01.30 -
Django admin 내부 변수 참조
The Django admin site | Django documentation | Django (djangoproject.com) The Django admin site | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com
2021.01.30