module documentation

Provide urlresolver functions that return fully qualified URLs or view names

Function preserve_builtin_query_params Given an incoming request, and an outgoing URL representation, append the value of any built-in query parameters.
Function reverse If versioning is being used then we pass any `reverse` calls through to the versioning scheme instance, so that the resulting URL can be modified if needed.
Variable reverse_lazy Undocumented
Function _reverse Same as `django.urls.reverse`, but optionally takes a request and returns a fully qualified URL, using the request to get the base URL.
def preserve_builtin_query_params(url, request=None): (source)

Given an incoming request, and an outgoing URL representation, append the value of any built-in query parameters.

def reverse(viewname, args=None, kwargs=None, request=None, format=None, **extra): (source)

If versioning is being used then we pass any `reverse` calls through to the versioning scheme instance, so that the resulting URL can be modified if needed.

reverse_lazy = (source)

Undocumented

def _reverse(viewname, args=None, kwargs=None, request=None, format=None, **extra): (source)

Same as `django.urls.reverse`, but optionally takes a request and returns a fully qualified URL, using the request to get the base URL.