forms - Django Page not reloading with updated data after data update -
i have form submits , saves data database. after submit process, have view form re-display summary page lists items in database using following:
return httpresponseredirect(reverse("my_shows"))
reverse("my_shows") leads view gets relevant objects database , sends data template
the problem although correct page loads, data shows "old" , doesn't have recent submission i've confirmed in in database. have log out , log in summary page reflect recent changes.
what's fix this? i'm not using caching @ moment, , i'm not sure whats causing this.
Comments
Post a Comment