We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've just installed jet-reboot and dashboard, but I'm having these erros on the console.
django.jQuery is not a function is happening under the dashboard index page. django.gettext is not a function is happening under adding model page.
django.jQuery is not a function
django.gettext is not a function
I couldn't find a way to fix this in the repo.
Thanks
The text was updated successfully, but these errors were encountered:
You may need to initialize jquery and jquery init files for django on jet/templates/admin/base.html before line 31:
<script src="{% static 'admin/js/vendor/jquery/jquery.min.js' %}"></script> <script src="{% static 'admin/js/jquery.init.js' %}"></script>
<script src="{% static 'admin/js/vendor/jquery/jquery.min.js' %}"></script>
<script src="{% static 'admin/js/jquery.init.js' %}"></script>
Sorry, something went wrong.
I created a workaround and get rid of django.gettext is not a function error by extending admin/base.html and adding script:
{% extends 'admin/base.html' %} {% block footer %} <script> django.gettext = window.gettext; </script> {% endblock %}
No branches or pull requests
Hi, I've just installed jet-reboot and dashboard, but I'm having these erros on the console.
django.jQuery is not a function
is happening under the dashboard index page.django.gettext is not a function
is happening under adding model page.I couldn't find a way to fix this in the repo.
Thanks
The text was updated successfully, but these errors were encountered: