i am new in django, so in my first app ,am stack at mapping the URL and I 
get an error that can not import name 'path' ,,which is in the tmn(my_app) 
folder , please help

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/88ca007c-c716-4050-a7ce-7bb1b7214fe0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
from django.conf.urls import path
from django.contrib import admin
from . import views
urlpatterns = [
    path('index/',views.index, name="index"),
    ]

Reply via email to