summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2024-02-29 19:31:11 -0600
committerluxagraf <sng@luxagraf.net>2024-02-29 19:31:11 -0600
commita08bda7e08de6f510748fa094fb55bbbdb673c12 (patch)
tree5cb463ef2cb2710455fd9b25de32577a0c5a140a /config
parentb5db26426d58b6394c8a2b15aacabd3c9e883807 (diff)
range: added craft urls and views
Diffstat (limited to 'config')
-rw-r--r--config/base_urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index 51370f7..96b1082 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -65,6 +65,9 @@ urlpatterns = [
path(r'essays/', include('posts.urls.essay_urls', namespace='essay-list')),
path(r'range/', include('posts.urls.range_urls', namespace='range')),
path(r'friends/', include('posts.urls.friends_urls', namespace='friends')),
+ path(r'how-to/', include('posts.urls.craft_urls')),
+ re_path(r'^how-to/$', RedirectView.as_view(url='/how-to/')),
+ path(r'how-tos/', include('posts.urls.craft_urls', namespace='craft')),
path(r'book-notes/', include('books.urls')),
#path(r'people/', include('people.urls')),
path(r'dialogues/', include('sightings.urls', namespace='sightings')),