diff --git a/templates/threads.html b/templates/threads.html index ca894e4..b1c6822 100644 --- a/templates/threads.html +++ b/templates/threads.html @@ -432,6 +432,7 @@ {{ attribution.owner }}

Powered by /threads

+

Rendered on {{ render_date }}

diff --git a/threads.py b/threads.py index 8a8b9a9..d9ef13b 100755 --- a/threads.py +++ b/threads.py @@ -47,7 +47,9 @@ def middleware(): @threads.route('/') def home(): statuses = fetch_statuses() - return render_template('threads.html', threads=statuses, app=app, attribution=attribution) + currentDateTime = datetime.now() + date = currentDateTime.date() + return render_template('threads.html', threads=statuses, app=app, attribution=attribution, render_date=currentDateTime) @threads.route('/') def thread(id):