diff options
author | Jonathan Liuti <liuti.john@gmail.com> | 2016-08-24 17:20:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-24 17:20:36 +0200 |
commit | 5f9cdf70b62a4ea5bb6f657387f117b41a553628 (patch) | |
tree | 212c503078622ab184b9332a960778378555c046 /wkhtmltopdf/tests/templates | |
parent | 59d3a49ae52756d9733a9ac2b6c5ed01587b9433 (diff) | |
parent | e979d40d365e992fa035d1bce2c230699ffe255d (diff) | |
download | django-wkhtmltopdf-5f9cdf70b62a4ea5bb6f657387f117b41a553628.tar.gz django-wkhtmltopdf-5f9cdf70b62a4ea5bb6f657387f117b41a553628.tar.bz2 django-wkhtmltopdf-5f9cdf70b62a4ea5bb6f657387f117b41a553628.zip |
Merge pull request #119 from brianjbuck/remove-current-app-kwarg
Remove kwarg `current_app=None`.
Diffstat (limited to 'wkhtmltopdf/tests/templates')
-rw-r--r-- | wkhtmltopdf/tests/templates/footer.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wkhtmltopdf/tests/templates/footer.html b/wkhtmltopdf/tests/templates/footer.html index cf98267..9deaf30 100644 --- a/wkhtmltopdf/tests/templates/footer.html +++ b/wkhtmltopdf/tests/templates/footer.html @@ -1,3 +1,4 @@ -<script src="{{ STATIC_URL }}sample_js_not_existing.js"></script> +{% load static %} +<script src="{% static 'sample_js_not_existing.js' %}"></script> -<img src="{{ MEDIA_URL }}sample_image_not_existing.png" /> +<img src="{% get_media_prefix %}sample_image_not_existing.png" /> |