Untitled
plain_text
a month ago
370 B
0
Indexable
Never
#get method from django.contrib import admin from django.urls import path, include from Myapp import views urlpatterns = [ path('submit/',views.submit), path('model/',views.model), path('login_post/',views.login_post), path('view/',views.view), path('reg/',views.registration), path('registration_post/',views.registration_post), ]