I have the following in my views.py:
ACCEPTED = ["x", "y", "z", ...]
def index(request, param):
if not (param in ACCEPTED):
raise Http404
return render(request, "index.html", {"param": param})
Url is simple enough:
path('articles/<str:param>/', views.index, name='index'),
How do I generate a sitemap for this path only for the accepted params defined in the ACCEPTED
constant? Usually examples I've seen query the database for a list of detail views.