Пример #1
0
    https://docs.djangoproject.com/en/2.2/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from webapp.views import IndexView, ArticleView, ArticleCreateView, \
    ArticleUpdateView, ArticleDeleteView, CommentCreateView, CommentsView, CommentUpdateView,\
    CommentDeleteView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', IndexView.as_view(), name='index'),
    path('article/<int:pk>/', ArticleView.as_view(), name='article_view'),
    path('article/add/', ArticleCreateView.as_view(), name='article_add'),
    path('article/<int:pk>/edit/', ArticleUpdateView.as_view(), name='article_update'),
    path('article/<int:pk>/delete/', ArticleDeleteView.as_view(), name='article_delete'),
    path('article/comment', CommentsView.as_view(), name='comments_view'),
    path('article/comment/add/', CommentCreateView.as_view(), name='comment_add'),
    path('article/comment/<int:pk>/edit/', CommentUpdateView.as_view(), name='comment_update'),
    path('article/comment/<int:pk>/delete/', CommentDeleteView.as_view(), name='comment_delete'),
]
Пример #2
0
from django.urls import path
from webapp.views import IndexView, ArticleView, ArticleCreateView, \
    ArticleUpdateView, ArticleDeleteView, CommentCreateView, CommentForArticleCreateView, \
    CommentListView, CommentUpdateView, CommentDeleteView,ArticleSearchView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', IndexView.as_view(), name='index'),
    path('article/search/', ArticleSearchView.as_view(),
         name='article_search'),
    path('article/<int:pk>/', ArticleView.as_view(), name='article_view'),
    path('article/add/', ArticleCreateView.as_view(), name='article_add'),
    path('article/<int:pk>/edit/',
         ArticleUpdateView.as_view(),
         name='article_update'),
    path('article/<int:pk>/delete/',
         ArticleDeleteView.as_view(),
         name='article_delete'),
    path('comments/', CommentListView.as_view(), name='comment_list'),
    path('comment/add/', CommentCreateView.as_view(), name='comment_add'),
    path('comment/<int:pk>/edit/',
         CommentUpdateView.as_view(),
         name='comment_update'),
    path('comment/<int:pk>/delete/',
         CommentDeleteView.as_view(),
         name='comment_delete'),
    path('article/<int:pk>/add-comment/',
         CommentForArticleCreateView.as_view(),
         name='article_comment_create')
]
Пример #3
0
from django.urls import path, include
from webapp.views import IndexView, ArticleCreateView, ArticleView, \
    ArticleUpdateView, ArticleDeleteView, \
    ArticleCommentCreateView, ArticleMassActionView, \
    CommentUpdateView, CommentDeleteView, ArticleLikeView, ArticleUnLikeView, CommentLikeView, CommentUnLikeView

app_name = 'webapp'

urlpatterns = [
    path('', IndexView.as_view(), name='index'),

    path('article/', include([
        path('<int:pk>/', include([
            path('', ArticleView.as_view(), name='article_view'),
            path('update/', ArticleUpdateView.as_view(), name='article_update'),
            path('delete/', ArticleDeleteView.as_view(), name='article_delete'),
            path('comments/add/', ArticleCommentCreateView.as_view(),
                 name='article_comment_add'),
            path('like/', ArticleLikeView.as_view(), name='article_like'),
            path('unlike/', ArticleUnLikeView.as_view(), name='article_unlike'),
        ])),

        path('add/', ArticleCreateView.as_view(), name='article_create'),
        path('mass-action/', ArticleMassActionView.as_view(), name='article_mass_action'),
    ])),

    path('comment/', include([
        path('<int:pk>/', include([
            path('update/', CommentUpdateView.as_view(), name='comment_update'),
            path('delete/', CommentDeleteView.as_view(), name='comment_delete'),
            path('like/', CommentLikeView.as_view(), name='comment_like'),