django-jet
django-jet copied to clipboard
Proper way to disable django-jet
I am trying to temporarily disable django-jet. The module has a compatibility problem with django-import-export and the admin models. (It does not display the file format for the export portion). When I comment out the app names from the config, and I comment out the 2 lines in urls.py I can see the admin but it does not have any kind of style. As if it cannot locate the static files. This is happening with debug settings. What is the proper way to disable django-jet temporarily, or to remove it completely?
@f1nality This is not good! @jangeador But i haven't problems with this package some time ago.
@jangeador I had the same issue, running python manage.py collectstatic
again and cleared the cache solved it for me, could someone please test this out in order to close this issue?
Edit: adding this to the documentation before closing.
Edit: You only need to clear your cache!
Please come to the django-jet Discord server so we can organize if you like:
- https://discord.gg/3yr5yeH
Welcome! 😄
Any fix for this? I also have faced similar issue
@ArijitWeird did you review our fork?
No @SalahAdDin . Actually I just wanted to know is there any compatibility issue of django-jet with jango-import-export ?
@ArijitWeird I don't know.
I have same problem
@Arlington1985 : Have you come with a solution ? @SalahAdDin : Do you have compatibility problem of django-jet with django import export.?
@ArijitWeird, not at all, just reversed all changes to back
Add a file in 'templates/admin/import_export/base.html' whit below content `{% extends "admin/import_export/base.html" %} {% load static %}
{% block extrahead %}{{ block.super }} <script type="text/javascript" src="{% static "admin/js/vendor/jquery/jquery.js" %}"> <script type="text/javascript" src="{% static "admin/js/jquery.init.js" %}"> {% endblock %}` and problem will be solved .
has anyone found best way to uninstall Django jet?