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