subscribe to digest

This commit is contained in:
j 2025-01-23 14:03:55 +05:30
commit bee761e0c4
8 changed files with 95 additions and 6 deletions

View file

@ -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'),