Skip to content

Instantly share code, notes, and snippets.

@KunalGautam
Last active July 15, 2019 17:13
Show Gist options
  • Select an option

  • Save KunalGautam/1759a33fd14d08c9f4ca33e5ece27a1b to your computer and use it in GitHub Desktop.

Select an option

Save KunalGautam/1759a33fd14d08c9f4ca33e5ece27a1b to your computer and use it in GitHub Desktop.

Revisions

  1. KunalGautam revised this gist Jul 15, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Django Url Pattern Hello World
    Original file line number Diff line number Diff line change
    @@ -3,5 +3,5 @@ from HelloWorld import views


    urlpatterns = [
    path('', views.index, name='index')
    path('', views.index)
    ]
  2. KunalGautam created this gist Jul 15, 2019.
    7 changes: 7 additions & 0 deletions Django Url Pattern Hello World
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    from django.urls import path
    from HelloWorld import views


    urlpatterns = [
    path('', views.index, name='index')
    ]