Route to contacts

Report a typo

Populate the urlpatterns with paths so that requests with the link contacts/ are processed by the ContactsView.

Do not implement any methods in the ContactsView class.

Write a program in Python 3
from django.urls import path
from django.views import View


class ContactsView(View):
pass


urlpatterns = [

]
___

Create a free account to access the full topic