Commentapp 생성
Mixin
detail view를 form과 함께 만들고 싶다면? → mixin 사용!
FormMixin : detail view 내에서도 form 사용 가능
시작
앱 생성
python manage.py startapp commentapp
pragmatic - settings.py
- INSTALLED_APPS
에 추가
urls.py
path('comments/', include('commentapp.urls')),
views.py
models.py
model 생성했으니까 form
model 만들었으니까 마이그레이션 작업
makemigraion -> migrate
{% include 'commentapp/create.html' with article=target_article %}