18 lines
731 B
Python
18 lines
731 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "manage_cms_api"
|
|
|
|
urlpatterns = [
|
|
|
|
path('news-article-mobile/', views.NewsAndArticlesView.as_view(), name='news_article_mobile'),
|
|
path('newsletter-mobile/', views.NewsLettersView.as_view(), name='newsletter_mobile'),
|
|
path('faq-mobile/', views.FaqView.as_view(), name='faq_mobile'),
|
|
path('organization-mobile/', views.OrganizationView.as_view(), name='organization_mobile'),
|
|
|
|
path('education/video/', views.EducationVideoView.as_view(), name='education_video'),
|
|
path('education/material/', views.EducationMaterialView.as_view(), name='education_material'),
|
|
path('education/tags/', views.EducationTagsView.as_view(), name='education_tags'),
|
|
|
|
]
|