rom django.urls import path, url code example
Example 1: how to get the current url path in django template
{{ request.path }} # -without GET parameters
{{ request.get_full_path }} # - with GET parameters
Example 2: django url patterns static
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)