module documentation

Undocumented

Function i18n_patterns Add the language code prefix to every URL pattern within this function. This may only be used in the root URLconf, not in an included URLconf.
Function is_language_prefix_patterns_used Return a tuple of two booleans: ( `True` if i18n_patterns() (LocalePrefixPattern) is used in the URLconf, `True` if the default language should be prefixed )
Variable urlpatterns Undocumented
def i18n_patterns(*urls, prefix_default_language=True): (source)

Add the language code prefix to every URL pattern within this function. This may only be used in the root URLconf, not in an included URLconf.

@functools.lru_cache(maxsize=None)
def is_language_prefix_patterns_used(urlconf): (source)

Return a tuple of two booleans: ( `True` if i18n_patterns() (LocalePrefixPattern) is used in the URLconf, `True` if the default language should be prefixed )

urlpatterns = (source)

Undocumented