django
django context to javascript, to HTML
whylite
2023. 1. 16. 19:49
How to use the context variables passed from Django in javascript?
I am having a method in views.py as follows: def index(self, request): initial = get_initial() context = {"context" : initial_topics} template = loader.get_template('index.html') r...
stackoverflow.com
django context to HTML
https://nachwon.github.io/django-10-temp-language/
[Django Tutorial] Blog 만들기 - 10. 템플릿 언어
이제 ORM 을 통해 데이터베이스의 데이터를 다루는 방법까지 알았으니 이렇게 불러온 데이터를 템플릿에 적용시켜주면 동적으로 템플릿을 생성할 수 있다. 그럼 데이터를 템플릿에 적용하는 방
nachwon.github.io