• This project
    • Loading...
  • Sign in

jacek / django-react

Logo fsiweb2
Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • django-react
  • app
  • apps
  • welcome
  • urls.py
  • Initial commit · f028ddae
    f028ddae Browse Files
    jacek authored 2022-03-18 13:26:33 +0100
urls.py 133 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
from django.urls import path

from . import views

app_name = 'welcome'

urlpatterns = [

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