subdomains.templatetags.subdomainurls

subdomains.templatetags.subdomainurls.url(context, view, subdomain=<object object>, *args, **kwargs)

Resolves a URL in a template, using subdomain-based URL resolution.

If no subdomain is provided and a request is in the template context when rendering, the URL will be resolved relative to the current request’s subdomain. If no request is provided, the URL will be resolved relative to current domain with the settings.ROOT_URLCONF.

Usage:

{% load subdomainurls %}
{% url 'view-name' subdomain='subdomain' %}