Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jeonghs2015
GitHub Repository: jeonghs2015/Django-instagram
Path: blob/master/jinstagram/urls.py
6903 views
1
"""jinstagram URL Configuration
2
3
The `urlpatterns` list routes URLs to views. For more information please see:
4
https://docs.djangoproject.com/en/4.0/topics/http/urls/
5
Examples:
6
Function views
7
1. Add an import: from my_app import views
8
2. Add a URL to urlpatterns: path('', views.home, name='home')
9
Class-based views
10
1. Add an import: from other_app.views import Home
11
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
12
Including another URLconf
13
1. Import the include() function: from django.urls import include, path
14
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
15
"""
16
from django.contrib import admin
17
from django.urls import path, include
18
from .views import Sub
19
from content.views import Main, UploadFeed
20
from .settings import MEDIA_URL, MEDIA_ROOT
21
from django.conf.urls.static import static
22
23
urlpatterns = [
24
path('admin/', admin.site.urls),
25
path('main/', Main.as_view()),
26
path('content/upload', UploadFeed.as_view())
27
]
28
29
urlpatterns += static(MEDIA_URL, document_root=MEDIA_ROOT)
30
31
32