Commit f4f0fa08 authored by Anya Habana's avatar Anya Habana

Added form url

parent 1eb2ed28
from django.urls import path from django.urls import path
from .views import WidgetUserDetailView, index from . import views
urlpatterns = [ urlpatterns = [
path('', index, name='index'), path('', views.index, name='index'),
path('<int:pk>/details/', WidgetUserDetailView.as_view(), name='details'), path('<int:pk>/details/', views.WidgetUserDetailView.as_view(), name='details'),
path('add/', views.newuser, name='newuser'),
] ]
app_name = 'homepage' app_name = 'homepage'
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment