私はDjangoを開始しています。Django - テンプレートに私のvarを表示していません
私のテンプレートに私のvar
を渡そうとしていますが、私のブラウザには表示されますが動作しません。
from django.conf.urls import *
from django.contrib import admin
from django.contrib.auth.views import login
from preguntasyrespuestas.views import index
urlpatterns = [
url(r'^$', index, name='index'),
]
私のhtml:
<!DOCTYPE html>
<html>
<head>
<title> Preguntas </title>
</head>
<body>
<p>{{ string }}</p>
</body>
</html>
Basicaly私は私のテンプレートでstring
に何があるか見せたい
は、ここに私のviews.py
from django.shortcuts import render
from django.http import HttpResponse
from preguntasyrespuestas.models import Pregunta
from django.shortcuts import render_to_response
# Create your views here.
def index(request):
string = 'hi world'
return render_to_response('test/index.html',
{'string': string})
ここにある私のURLです。しかし、作業..
私のエラーではありません:
Using the URLconf defined in django_examples.urls, Django tried these URL patterns, in this order:
^$ [name='index']
The current URL, test/index.html, didn't match any of these.
私が間違って何をしているのですか?ありがとう..