Issue:
Using the URLconf defined in ems_project.urls
, Django tried these URL patterns, in this order:
admin/
empop
empop/<int:id>
The empty path didn’t match any of these.
Though the path is created for each one. But not able to see the results.
urls:
from django.contrib import admin
from django.urls import path
from emsapp.views import empop
urlpatterns = [
path('admin/', admin.site.urls),
path("empop", empop),
path("empop/<int:id>", empop),
]
Need further assistance.
Welcome @nikhil-kapse-412 !
Side Note: When posting code here, enclose the code between lines of three backtick - ` characters. This means you’ll have a line of ```, then your code, then another line of ```. This forces the forum software to keep your code properly formatted. (I’ve taken the liberty of fixing your post. Please remember to do this in the future.)
This is telling you that you’re trying to reference an empty url.
What URL are you trying to access? How are you trying to access it?
Note: For future reference, when you’re requesting assistance with an error, it’s most helpful to post the complete error message with the traceback from the server console and not the summary information presented in the browser.