subscribe to digest
This commit is contained in:
parent
743276298d
commit
bee761e0c4
8 changed files with 95 additions and 6 deletions
|
|
@ -20,6 +20,7 @@ from django.urls import path, re_path
|
|||
from .item import views as item_views
|
||||
from .user import views as user_views
|
||||
from .page import views as page_views
|
||||
from .listmonk import views as email_views
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
|
|
@ -31,6 +32,7 @@ urlpatterns = [
|
|||
path('login/', user_views.login, name='login'),
|
||||
path('logout/', user_views.logout, name='logout'),
|
||||
path('register/', user_views.register, name='register'),
|
||||
path('subscribe/', email_views.subscribe, name='subscribe'),
|
||||
path('comment/publish/', item_views.publish_comment, name='publish-comment'),
|
||||
path('comment/', item_views.comment, name='comment'),
|
||||
path('_<int:year>-<int:month>-<int:day>/', item_views.archive, name='archive'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue