タイトル: Templateの定義方法
これはdjangoのTemplateの定義方法に関する記事です。
Templateはユーザーに見せる画面を定義するのでHTMLなどで構成されます。
以下、ViewからTemplateを呼び出す定義例です。
1.Viewの定義
\app1\views.py |
---|
from django.shortcuts import render
|
contextに辞書で値を格納します。
renderで表示するTemplateとcontextを返却しています。
2.Templateの定義
\app1\templates\app1\index.html |
---|
<b><font color=#6e6eff> {{ val1 }} </font></b> |
Viewでcontextに格納したキー名を{{}}で指定して画面に表示します。
3.画面に出力