The url pattern was not including the trailing / [YOCTO #14445]
Signed-off-by: Tim Orling <[email protected]> --- layerindex/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layerindex/urls.py b/layerindex/urls.py index 45dbd3c..de15bb0 100644 --- a/layerindex/urls.py +++ b/layerindex/urls.py @@ -128,7 +128,7 @@ urlpatterns = [ EditProfileFormView.as_view( template_name='layerindex/profile.html'), name="profile"), - url(r'^about$', + url(r'^about/$', TemplateView.as_view( template_name='layerindex/about.html'), name="about"), -- 2.30.2
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#56711): https://lists.yoctoproject.org/g/yocto/message/56711 Mute This Topic: https://lists.yoctoproject.org/mt/90380108/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
