# articles > templates > articles > create.html 더보기 Create {% csrf_token %} {{ form.as_p }} [back] # articles > views.py form = ArticleForm(request.POST, request.FILES) 더보기 from django.shortcuts import render, redirect from .models import Article from .forms import ArticleForm # Create your views here. def index(request): articles = Article.objects.all() context = { 'articles': articles, } retur..