Esempio n. 1
0
"""InstDemo 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 include, path
from Insta.views import (HelloWord, PostsView, PostDetailView, PostCreateView, 
                        PostUpdateView, PostDeleteView, addLike, UserDetailView)

urlpatterns = [
    path('helloworld/', HelloWord.as_view(), name = 'helloworld'),
    path('', PostsView.as_view(), name = 'posts'),
    path('post/<int:pk>/', PostDetailView.as_view(), name = 'post_detail'),
    path('post/new/', PostCreateView.as_view(), name = 'make_post'),
    path('post/update/<int:pk>/', PostUpdateView.as_view(), name = 'post_update'),
    path('post/delete/<int:pk>/', PostDeleteView.as_view(), name = 'post_delete'),
    path('like', addLike, name = 'addLike'),
    path('user/<int:pk>/', UserDetailView.as_view(), name = 'user_profile'),
]
Esempio n. 2
0
The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.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 django.urls import include
from Insta.views import HellowWorld, PostsView, PostDetailView, PostCreateView, PostUpdateView, PostDeleteView, addLike, \
    UserDetailView

urlpatterns = [
    path('hellowworld/', HellowWorld.as_view(), name='helloworld'),
    path('', PostsView.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('like', addLike, name='addLike'),
    path('user/<int:pk>/', UserDetailView.as_view(), name='user_detail'),
]
Esempio n. 3
0
    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, PostsView, PostDetailView, PostCreateView, PostUpdateView, PostDeleteView, SignUp, addLike, UserDetailView

urlpatterns = [
    path('helloworld/', HelloWorld.as_view(), name='helloworld'),
    path('', PostsView.as_view(), name='posts'),
    path(
        'posts/<int:pk>'  #given an int as primary key
        ,
        PostDetailView.as_view(),
        name='post_detail'),
    path('posts/new/', PostCreateView.as_view(), name='post_create'),
    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_detail/<int:pk>/', UserDetailView.as_view(),
         name='user_detail'),
]
Esempio n. 4
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"),
]
Esempio n. 5
0
    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, PostsView, PostDetailView, PostCreateView,
                         PostUpdateView, PostDeleteView, addLike,
                         UserDetailView, UserEditView, addComment,
                         toggleFollow, ExploreView, SignUp)

urlpatterns = [
    path('helloworld/', HelloWorld.as_view(), name='helloworld'),
    path('', PostsView.as_view(), name='posts'),
    path('post/<int:pk>/', PostDetailView.as_view(), name='post_detail'),
    path('post/new/', PostCreateView.as_view(), name='make_post'),
    path('post/update/<int:pk>/', PostUpdateView.as_view(),
         name='post_update'),
    path('post/delete/<int:pk>/', PostDeleteView.as_view(),
         name='post_delete'),
    path('like', addLike, name='addLike'),
    path('comment', addComment, name='addComment'),
    path('togglefollow', toggleFollow, name='togglefollow'),
    path('user_profile/<int:pk>/',
         UserDetailView.as_view(),
         name='user_detail'),
    path('edit_profile/<int:pk>/', UserEditView.as_view(),
         name='edit_profile'),
    path('explore', ExploreView.as_view(), name='explore'),
    path('auth/signup/', SignUp.as_view(), name='signup'),
]