Answers for "django urls path"

4

urlpatterns = [ path('SignUp/', views.SignupPage, name='user_data')

from django.urls import include, path

urlpatterns = [
    path('index/', views.index, name='main-view'),
    path('bio/<username>/', views.bio, name='bio'),
    path('articles/<slug:title>/', views.article, name='article-detail'),
    path('articles/<slug:title>/<int:section>/', views.section, name='article-section'),
    path('weblog/', include('blog.urls')),
    ...
]
Posted by: Guest on May-28-2020
0

how to get the current url path in django template

{{ request.path }}  #  -without GET parameters 
{{ request.get_full_path }}  # - with GET parameters
Posted by: Guest on August-03-2020
1

Django how to get url path for a view

from django.urls import reverse

reverse('app1.view.view1')
Posted by: Guest on May-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language