I have a Django page called /candidates
which is supposed to fetch all Candidate
entries in the database.
The problem is whenever I create a new Candidate
entry, the /candidates
page doesn't show anything but when I check django-admin
I can verify that the new entry was in fact created successfully. But it doesn't reflect on the page I created. I had to restart apache before the /candidates
page can actually show the newly created entries.
Is there a new feature on Django 1.7 that causes this behavior? I haven't encountered this in previous versions.