Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- test.py
- Python
- 프로필사진 업로드
- CNN
- 북마크한 목록 가져오기
- docker
- class view
- 개인페이지
- serializer
- Django
- 이진 논리 회귀
- 와이어프레임
- 다항 논리 회귀
- python to json
- js
- 장고
- 댓글쓰기
- 프론트엔드
- ERD
- 딥러닝
- json to db
- 백엔드
- API명세
- DRF
- 팔로우 기능 에러
- original set
- 비밀번호 수정
- 댓글지우기
- 머신러닝
- 팀프로젝트 기획
Archives
- Today
- Total
목록댓글지우기 (1)
코딩 개발일지
장고(Django) 댓글쓰기/지우기
가장먼저 detail 페이지를 만들어 줄 것이다. (게시글 1개 보기!!!!) views.py에 detail 함수를 만들어 주고 def detail(request): pass urls.py에서 path로 연결해 준다! path('/', views.detail), # 게시물 1개 보기 detail.html도 만들어 준다. 이제 detail 함수를 만져준다. (bucket은 버킷리스트이다ㅋㅋㅋ) # 개인 게시물 페이지 def detail(request, bucket_id): bucket = Bucket.objects.get(id=bucket_id) context = { 'bucket': bucket, } return render(request, "bucket/detail.html", context) 이러면 ..
AI 본 교육/AI 6주차
2023. 9. 11. 23:19