as per topic, I am new to web development and have issues trying to use jeditable in a Django template.
To be specific, I have copied jeditable.js into a local filepath.
It says /users/funnynode/doyourwork/jeditable.js
However when I try to add source on the django template it's not working
You actually need to look into serving static files in django
https://docs.djangoproject.com/en/dev/howto/static-files/
You can also find an example over here Images not rendering in HTML on Django runserver, but HTML works in browser