Skip to content
Snippets Groups Projects
Commit 5d887ed1 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

allows to have extra_js_file(s)

parent 4b7ebc23
No related branches found
No related tags found
No related merge requests found
Pipeline #28554 passed
......@@ -8,6 +8,9 @@
{% if extra_js_file %}
<script src="{% static extra_js_file %}"></script>
{% endif%}
{% for extra_js_file in extra_js_files %}
<script src="{% static extra_js_file %}"></script>
{% endfor%}
{% endblock %}
{% block title %}{{ title }}{% endblock %}
......
......@@ -7,7 +7,7 @@ readme = open('README.rst').read()
setup(
name='django-basetheme-bootstrap',
version='0.2.32',
version='0.2.33',
description='Django Basetheme Bootstrap',
long_description=readme,
author='Bryan Brancotte',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment