How can I refresh another page in Django?

Is there any way to refresh another page by clicking a button on current page? (Any way for server to send a packet that makes every broswer on a certain url page refresh itself)

example:

127.0.0.1:8000/main -> a page that has the button

127.0.0.1:8000/list -> a page I want to refresh

My desktop web browser is currently on '/main' and my laptop web browser is currently on '/list'. How can I refresh my labtop web browser(to a newer version of '/list'page) by clicking a button in '/main' page on my desktop?

Is using websocket(like django-channels) only way to do this work?

Back to Top