python-django.el
python-django.el copied to clipboard
An Emacs package for managing Django projects.
I installed Emacs 27.0.50 recently and noticed that the menu in the Python-Django mode is not populated. The mode seems to be working, but the toolbar menu is empty.
I am getting the following error > Wrong argument type stringp, nil when running `m` + `migrate` command in the mode. The same command works in the shell. ` python...
When I try to run the analog of `python manage.py cms check` after installing Django CMS, I am not able to do so because the `cms` command is not found....
After creating a new app with c-o-s-a , I am asked if I want to move the folder. App created in x/y/z/. Do you want to move it? (y or...
Previous implementation relied on first 3 items of version number `1.9` is ok but `1.10` become `1.1` New method splits on the `.` and discards the last part before reforming.
After migrating mi settings module to use `django-configurations` opening the project buffer complains about `JSON readtble error`. Adding some initialization code to `python-django-info-imports-code` seems to solve the issue. See https://github.com/patxoca/python-django.el/commit/add8ebb9e940e3507d26263234ec4b6c1312e408...
if `(setq python-shell-interpreter "ipython")`. Each time I try calling a management command there's just this message that no commands were found: ``` python-django-mgmt-list-commands: Search failed: "Available subcommands: " ``` With...
Commit 433b132f2402cf6ceae5b1a8ca6956933ba7798c messes up the displayed order of apps by using an unordered dict to store app_paths. This fix retains the order of apps but leads to the order of...
I think this would be a nice feature to get tab-completion, and I can't imagine this being too difficult since the default `run-python` command in emacs has tab-completion. If someone...