Out of an "old" tab, i'm opening a new tab in my django-powered web-app.
Now, when submitting something in the new tab, it will still load in the old tab, however i want django to do all the stuff in the new tab/window (unfortunately, this also applies to popup-windows (popupwindow = new tab).
How can i tell Django in which window it should "do stuff"? already tried things with JS (onclick="self.focus();") and things like "target="_self" "or other things, but i think it's a django problem.