You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
Performing system checks...
System check identified some issues:
WARNINGS:
?: (urls.W001) Your URL pattern '^blog/$' [name='article-list'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<slug>\w[-\w]*)/$' [name='article-detail'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/$' [name='article-list-by-year'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$' [name='article-list-by-month'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/$' [name='article-list-by-day'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<pk>\d+)/$' [name='article-detail'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$' [name='article-detail'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$' [name='article-detail'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/(?P<year>\d{4})/(?P<slug>\w[-\w]*)/$' [name='article-detail'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/author/(?P<author>\w[-\w]*)/$' [name='article-list-by-author'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/category/(?P<category>\w[-\w]*)/$' [name='article-list-by-category'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/category/(?P<category>\w[-\w]*)/feed/$' [name='article-list-by-category-feed'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/feed/$' [name='article-list-feed'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/search/$' [name='article-search'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/tag/(?P<tag>\w[-\w]*)/$' [name='article-list-by-tag'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
?: (urls.W001) Your URL pattern '^blog/tag/(?P<tag>\w[-\w]*)/feed/$' [name='article-list-by-tag-feed'] uses include with a route ending with a '$'. Remove the dollar from the route to avoid problems including URLs.
System check identified 16 issues (0 silenced).
February 14, 2019 - 23:58:19
Django version 2.1.7, using settings 'gsoc.settings'
The text was updated successfully, but these errors were encountered:
@botanicvelious these routes are generated by aldryn-newsblog. Recent versions of django has added some checks for the urls and these urls fail these checks. So clearly the update caused this.
When running runserver it complains...
The text was updated successfully, but these errors were encountered: