Django view에 template 적용한 화면 추가
2021. 3. 28. 13:45ㆍ파이썬/Django
view.py에 화면 하나 추가
def tesseract(request) :
template = 'ocr/tesseract/index.html'
return render(request, template, None)
'파이썬 > Django' 카테고리의 다른 글
Django group by Count함수, order by(정렬) (0) | 2021.04.03 |
---|---|
Django context must be a dict rather than QuerySet. (0) | 2021.04.03 |
Django admin 위치 (0) | 2021.03.27 |
Django admin change_list.html 구조 (0) | 2021.03.27 |
Invalid HTTP_HOST header: '192.168.0.3'. You may need to add '192.168.0.10' to ALLOWED_HOSTS. (0) | 2021.03.27 |