Complete the code to import the include function needed to include app URLs.
from django.urls import path, [1]
The include function is used to include other URL configurations in Django.
Complete the code to include the app URLs under the 'blog/' path.
urlpatterns = [
path('blog/', [1]('blog.urls')),
]The include function is used to include the URL patterns from the 'blog' app.
Fix the error in the code to correctly include the app URLs.
urlpatterns = [
path('shop/', [1]),
]
# 'shop.urls' is missing the include function.The include function must wrap the app URL string to properly include it.
Fill both blanks to include the 'accounts' app URLs with a namespace.
urlpatterns = [
path('accounts/', [1]('accounts.urls', namespace=[2])),
]Use include to include the URLs and set the namespace as the app name string.
Fill all three blanks to include the 'store' app URLs with a namespace and a name for the path.
urlpatterns = [
path('[1]/', [2]('store.urls', namespace=[3]), name='store_home'),
]The URL path is 'store', use include to include URLs, and namespace is the app name string 'store'.