<How Can I implement Dynamic Real Time Counter in ...
# community-feeds
r
How Can I implement Dynamic Real Time Counter in Django I have the following Django Models where I want to display real timer count down of the subscription (count down to the expiring Date) of every business account. I also have ajax code stored in my static/js folder where i referenced it on the base.html template. while in the index.html template I added a p tag with the countdown id but nothing is working. Someone should demonstrate the best way of achieving this in Django real time. Models: class BusinessAccount(models.Model):...