Skip to content

Order counts in urls.py

Mark Sapiro requested to merge msapiro/mailman-web:urls into master

The addition of

    path('postorius/', include('postorius.urls')),
    path('hyperkitty/', include('hyperkitty.urls')),

after

     path('mailman3/', include('postorius.urls')),
     path('archives/', include('hyperkitty.urls')),

by !44 (merged) to fix #24 (closed) causes many links on web pages to be to /postorius/ and /hyperkitty/ instead of /mailman3/ and /archives/. This puts them before so the links are /mailman3/ and /archives/ an the Apache config at https://docs.mailman3.org/en/latest/install/virtualenv.html#apache-configuration still works.

Merge request reports