분류 전체보기(746)
-
Django admin custom filter
class NullFilter(admin.SimpleListFilter) : parameter_name = 'title' title = 'title' def lookups(self, request, model_admin) : return ( ('Not Null', 'Not empty only'), ('Null', 'Empty only'), ) def queryset(self, request, queryset) : title= self.value() if title== 'Not Null' : return queryset.filter(category__isnull=False) elif title== 'Null' : return queryset.filter(category__isnull=True) return..
2020.12.30 -
font_properties 구성
fontname italic bold fixed serif fraktur
2020.12.30 -
migrate가 아무 작동을 하지 않는 경우
makemigrations에서 작업내역이 존재하는데도, migrate 수행결과가 아래와 같다면, DB의 django_migrations 테이블의 해당 app 내역을 삭제하는 것도 방법임 Running migrations: No migrations to apply.
2020.12.29 -
python manage.py makemigrations app_label
class Schedule(models.Model) : ... class Meta: app_label = 'support' class의 app_label 기준으로 마이그레이션을 함
2020.12.29 -
No installed app with label 'App이름'.
python manage.py makemigrations test 수행시 에러 발생 setting.py에 아래 내용을 추가해야 함 INSTALLED_APPS = [ 'test.apps.TestConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ]
2020.12.29 -
한글폰트 확인
fc-list :lang=ko
2020.12.29