검색
[django] Customize the admin change list
[django] Customize the admin change list
2015. 7. 13.Customize the admin change listist_display 옵션을 통해서 보여줄 필드를 아래와 같이 수정할 수 있다. 해당 컬럼의 헤더를 클릭함으로써 정렬 가능 (단, was_published_recently 는 정렬 안됨. 왜냐하면 사용자가 생성한 컬럼의 경우는 지원안됨) /root/mysite/polls/models.py list_display 에 대한 더욱 상세한 내용은 아래 링크 참조 https://docs.djangoproject.com/en/1.8/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_display list_filter 를 이용해서 필터 기능을 넣어보자.QuestionAdmin 에 아래 줄을 삽입한다. list_f..