20221019 TIL
2022. 10. 20. 07:42ㆍTIL(Today I Learnd)
- 목차
팀프로젝트 3일차
오늘은 db설계가 마무리 되는 단계이며 머신러닝모델을 구축하는 날이었다.
그리고 난 프론트엔드를 만져보고 있는데 어렵다
templates 폴더와 static 폴더는 settings.py에서 설정을 따로 해줘야 한다
이렇게 해서 깔끔하게 프론트관련 파일들을 정리해주자
views.py 경로설정도 다시 해줘야된다.
def community(request):
if request.method == 'GET':
articles = Article.objects.all().order_by('-create_at')
context = {
'articles' : articles
}
return render(request, 'tweet/community.html', context)
render(request, '해당폴더/파일.html, context) 이렇게 바꿔줬따.
https://eveningdev.tistory.com/11
'TIL(Today I Learnd)' 카테고리의 다른 글
20221021 팀프로젝트 종료 (0) | 2022.10.21 |
---|---|
20221020 TIL (0) | 2022.10.21 |
20221018 TIL (0) | 2022.10.19 |
20221017 TIL 사물인식프로젝트 (0) | 2022.10.17 |
20221014 TIL (0) | 2022.10.17 |