I am really new to Django, and I'm trying have my site display a server status as text. This text, however, is dynamic. I do not understand why, if I go in my model and change the server status function to return 'cats', I don't see 'cats' appear in my browser for like 5 minutes.
From what I have learned so far, I suspect this has to do with Django caching templates on the server side. I have tried removing .pyc files, using @never_cache, and editing settings.py to use DummyCache, and clearing browser cache, all to no avail.
Does anyone know what's going on, or what a possible fix might be? Thanks!