Exemplo n.º 1
0
from django.urls import include, path

from Insta.views import (
    HelloWorld,
    PostView,
    PostDetailView,
    UserDetailView,
    PostCreateView,
    PostUpdateView,
    PostDeleteView,
    addLike,
)

# This is the app-level URL router

urlpatterns = [
    # path ('<route>', <class_name>.as_view(), name='')
    path("helloworld", HelloWorld.as_view(), name="helloworld"),
    path("", PostView.as_view(), name="posts"),
    path("posts/<int:pk>/", PostDetailView.as_view(), name="post_detail"),
    path("posts/new/", PostCreateView.as_view(), name="make_post"),
    path("posts/update/<int:pk>/",
         PostUpdateView.as_view(),
         name="post_update"),
    path("posts/delete/<int:pk>/",
         PostDeleteView.as_view(),
         name="post_delete"),
    path("like", addLike, name="addLike"),
    path("user/<int:pk>", UserDetailView.as_view(), name="user_detail"),
]
Exemplo n.º 2
0
"""InstaDemo URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    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, include

from Insta.views import PostView, PostDetail, PostCreateView, PostUpdateView, PostDeleteView, SignUpView

urlpatterns = [
    path('', PostView.as_view(), name='home'),
    path('post/<int:pk>/', PostDetail.as_view(), name='post_detail'),
    path('make_post/', PostCreateView.as_view(), name='make_post'),
    path('update_post/<int:pk>', PostUpdateView.as_view(), name='update_post'),
    path('delete_post/<int:pk>', PostDeleteView.as_view(), name='delete_post'),
    path('auth/signup', SignUpView.as_view(), name='signup'),
]
Exemplo n.º 3
0
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 include, path
from Insta.views import HelloWorld, PostView, PostDetailView, PostCreateView, PostUpdateView, \
    PostDeleteView, UserDetailView, toggleLike, addComment, toggleFollow, UserUpdateView, ExploreView

urlpatterns = [
    path('helloworld', HelloWorld.as_view(), name='helloworld'),
    path('', PostView.as_view(), name='posts'),
    path('post/<int:pk>/', PostDetailView.as_view(), name='post_detail'),
    path('post/new/', PostCreateView.as_view(), name='post_create'),
    path('post_update/<int:pk>/', PostUpdateView.as_view(), name='post_update'),
    path('post_delete/<int:pk>/', PostDeleteView.as_view(), name='post_delete'),
    path('user/<int:pk>/', UserDetailView.as_view(), name='user_detail'),
    path('user_update/<int:pk>/', UserUpdateView.as_view(), name='user_update'),
    path('explore', ExploreView.as_view(), name='explore'),
    path('like', toggleLike, name='toggleLike'),
    path('comment', addComment, name='addComment'),
    path('follow', toggleFollow, name='toggleFollow'),
]