Exemplo n.º 1
0
    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 ArticleListView, ArticleDetailView, CommentCreateView, CommentUpdateView, UserListView, UserDetailView, FavoritListView, ArticleCreateView, ArticleUpdateView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', ArticleListView.as_view(), name='article_list'),
    path('articles/<int:pk>',
         ArticleDetailView.as_view(),
         name='article_detail'),
    path('users', UserListView.as_view(), name='user_list'),
    path('users/<int:pk>', UserDetailView.as_view(), name='user_detail'),
    path('users/<int:pk>/favorites',
         FavoritListView.as_view(),
         name='user_favorit'),
    path('articles/create', ArticleCreateView.as_view(),
         name='article_create'),
    path('articles/<int:pk>/update',
         ArticleUpdateView.as_view(),
         name='article_update'),
    path('comment/create', CommentCreateView.as_view(), name='comment_create'),
    path('comment/<int:pk>/update',
         CommentUpdateView.as_view(),
         name='comment_update'),
]
Exemplo n.º 2
0
    https://docs.djangoproject.com/en/2.0/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 ArticleListView, ArticleDetailView, \
    UserListView, UserDetailView, ArticleCreateView, ArticleUpdateView, CommentCreateView, CommentUpdateView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', ArticleListView.as_view(), name='index'),
    path('article/<int:pk>', ArticleDetailView.as_view(), name='article_view'),
    path('users', UserListView.as_view(), name='user_view'),
    path('user/<int:pk>', UserDetailView.as_view(), name='usr_det_view'),
    path('article/create', ArticleCreateView.as_view(), name='article_create'),
    path('user/<int:pk>/update', ArticleUpdateView.as_view(), name='article_update'),
    path('article/<int:pk>/comment', CommentCreateView.as_view(), name='comment_create'),
    path('article/comment/<int:pk>/update', CommentUpdateView.as_view(), name='comment_update')


]
Exemplo n.º 3
0
from django.urls import path
from webapp.views import IndexView, ArticleView, ArticleCreateView, \
    ArticleUpdateView, ArticleDeleteView, CommentCreateView, CommentForArticleCreateView, \
    CommentListView, CommentUpdateView, CommentDeleteView, ArticleSearchView, \
    SearchResultsView

urlpatterns = [
    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/search/', ArticleSearchView.as_view(), name='article_search'),
    path('article/search/results/', SearchResultsView.as_view(), name='search_results'),
    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'),
]

app_name = 'webapp'
Exemplo n.º 4
0
    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 ArticleView, ArticleCreateView,\
    ArticleUpdateView, ArticleDeleteView, IndexView, CommentsView, CommentCreateView, 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('comment/', CommentsView.as_view(), name='comments'),
    path('comment/add/', CommentCreateView.as_view(), name='comment_add'),
    path('comment/<int:pk>/', CommentUpdateView.as_view(),
         name='comment_edit'),
    path('comment/<int:pk>/delete',
         CommentDeleteView.as_view(),
         name='comment_delete')
]
The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/2.1/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 UserListView, UserDetailView, PostDetailView, PostListView, FavoritesView, PostCreateView, PostUpdateView, CommentCreateView, CommentUpdateView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('users', UserListView.as_view(), name='user_list'),
    path('users/<int:pk>', UserDetailView.as_view(), name='user_detail'),
    path('', PostListView.as_view(), name='posts_list'),
    path('posts/<int:pk>', PostDetailView.as_view(), name='post_detail'),
    path('favorites/<int:pk>', FavoritesView.as_view(), name='favorites'),
    path('posts/create', PostCreateView.as_view(), name='post_create'),
    path('posts/<int:pk>/update', PostUpdateView.as_view(), name='post_update'),
    path('comments/create', CommentCreateView.as_view(), name='comment_create'),
    path('comments/<int:pk>/update', CommentUpdateView.as_view(), name='comment_update'),
]
Exemplo n.º 6
0
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'),
            path('unlike/', CommentUnLikeView.as_view(), name='comment_unlike')
        ]))
    ]))
]