前提・実現したいこと
ここに質問の内容を詳しく書いてください。
https://qiita.com/Qiitacky/items/e70813d539f52700eaa1
このサイトと全く同じことを実行したのですが実行できずに以下のようなエラーメッセージが出てしまいます。
これはsetting.pyに原因があるのでしょうか?
発生している問題・エラーメッセージ
File "C:\Users\Owner\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\urls\resolvers.py", line 685, in _reverse_with_prefix raise NoReverseMatch(msg) django.urls.exceptions.NoReverseMatch: Reverse for 'next' not found. 'next' is not a valid view function or pattern name
該当のソースコード
views.py from django.shortcuts import render from django.http import HttpResponse def index(request): params={ 'title':'Hello/Index', 'msg':'これは、サンプルで作ったページです', 'goto':'hello:next', } return render(request, 'hello/index.html',params) def next(request): params = { 'title':'Hello/Next', 'msg':'これは、もう一つのページです。', 'goto':'index', } return render(request, 'hello/index.html',params)
index.html <!doctype html> <html lang="ja"> <head> <meta charset="utf-8"> <title>{{title}}</title> </head> <body> <h1>{{title}}</h1> <p>{{msg}}</p> <p><a href="{% url goto %}">{{goto}}</a></p> </body> </html>
試したこと
上記のurlの通りに実行したのですがうまくいかず、エラー文を追って行っては見たのですが解読できませんでした。
補足情報(FW/ツールのバージョンなど)
visualstudio
あなたの回答
tips
プレビュー