Django 게시글 등록
2021. 11. 30. 20:25
Project/access-control
board_write.html {% extends "base.html" %} {% block contents %} Enter the number of people entering {% csrf_token %} {% for field in form %} {% ifequal field.name 'contents' %} {% else %} {% endifequal %} {% if field.errors %} {{ field.errors }} {% endif %} {% endfor %} 등록 돌아가기 {% endblock %} urls.py from django.urls import path from . import views urlpatterns = [ path('list/', views.board_list)..