Я добавил страницу tos. html в свое приложение django, и она отлично работает на локальном компьютере, но как только я запускаю ее в производство, она показывает это
NoReverseMatch at /
Reverse for 'tos' not found. 'tos' is not a valid view function or pattern name.
Request Method: GET
Request URL: http://www.flythecoop.io/
Django Version: 2.2.6
Exception Type: NoReverseMatch
Exception Value:
Reverse for 'tos' not found. 'tos' is not a valid view function or pattern name.
Exception Location: /home/reviews/venv/lib/python3.8/site-packages/django/urls/resolvers.py in _reverse_with_prefix, line 673
Python Executable: /home/reviews/venv/bin/python3.8
Python Version: 3.8.0
Python Path:
['/home/reviews/venv/bin',
'/home/reviews/reviews',
'/home/reviews/venv/lib/python38.zip',
'/home/reviews/venv/lib/python3.8',
'/home/reviews/venv/lib/python3.8/lib-dynload',
'/usr/lib/python3.8',
'/home/reviews/venv/lib/python3.8/site-packages']
Server time: Tue, 11 Feb 2020 01:02:33 +0000
Она у меня в базе . html file
63 </body>
64 <footer>
65 <br>
66 <p class="text-center">
67 <a class="btn btn-link btn-sm" href="{% url 'tos' %}" role="button">Terms of Service </a>
68 <a class="btn btn-link btn-sm" href="{% url 'about' %}" role="button">About </a>
69 <a class="btn btn-link btn-sm" href="{% url 'faq' %}" role="button">FAQ </a></p>
70 </footer>
71 </html>
Вот мой urls.py в приложении страниц
from django.urls import path
from . import views
urlpatterns = [
path('', views.HomePageView.as_view(), name='home'),
path('tos/', views.TosPageView.as_view(), name='tos'),
path('about/', views.AboutPageView.as_view(), name='about'),
path('faq/', views.FaqPageView.as_view(), name='faq'),
]
Вот мой views.py
from django.shortcuts import render
from django.views.generic import TemplateView
# Create your views here.
class HomePageView(TemplateView):
template_name = 'home.html'
class TosPageView(TemplateView):
template_name = 'tos.html'
class AboutPageView(TemplateView):
template_name = 'about.html'
class FaqPageView(TemplateView):
template_name = 'faq.html'
Вот уровень проекта urls.py
from django.contrib import admin
from django.urls import path, include
#from boards import views
urlpatterns = [
# This path for pages as static
path('', include('pages.urls')),
path('boards/', include('boards.urls')),
# path('boards/', include('boards.urls')),
path('admin/', admin.site.urls),
path('users/', include('users.urls')),
path('users/', include('django.contrib.auth.urls')),
]
Я рассматривал и другие подобные вопросы, но большинство из них были годами go и используют разные версии. Я думаю, что, должно быть, я упускаю что-то очевидное, но прошло некоторое время с тех пор, как я добавил страницу.