Verified Commit cb3ac79a authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

signon: also pass STATIC_URL to the template



Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent 3731aa30
...@@ -19,5 +19,5 @@ for path in paths: ...@@ -19,5 +19,5 @@ for path in paths:
if path not in sys.path: if path not in sys.path:
sys.path.append(path) sys.path.append(path)
from django.core.wsgi import get_wsgi_application from django.core.wsgi import get_wsgi_application # noqa: E402
application = get_wsgi_application() application = get_wsgi_application()
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<h1>{{person.fullname}} identities</h1> <h1>{{person.fullname}} identities</h1>
{% if identities %} {% if identities %}
{% include "signon/audit_identities.html" with identities=identities only %} {% include "signon/audit_identities.html" with identities=identities STATIC_URL=STATIC_URL only %}
{% endif %} {% endif %}
{% endblock %} {% endblock %}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment