Is there a way to auto redirect (or refresh) a template (or better: it's underlying view) after the passage of a set amount of time in Django? E.g. via using Redirect view or something similar? An example would be nice.
Essentially I need to approximate <meta http-equiv="refresh" content="60;url here">
, but in Django. Of course, I know exactly how the meta refresh tag in HTML works - but this question doesn't pertain to that (or to using JS to achieve the same effect). That tag has its own problems, e.g. it doesn't work in Opera Mini (a critical browser for my audience).