diff --git a/index.js b/index.js
index 519a971..ed1bd6d 100644
--- a/index.js
+++ b/index.js
@@ -48,7 +48,8 @@ app.get('/', function(req, res) {
         
         res.render('basic_template.html', {
             title: 'Supplier Balances',
-            balances: balances
+            balances: balances,
+            timestamp: new Date(),
         });
     })
 
diff --git a/views/basic_template.html b/views/basic_template.html
index bdc88ec..f6cb83f 100644
--- a/views/basic_template.html
+++ b/views/basic_template.html
@@ -32,6 +32,8 @@
         </tr>
     {/for}
     </table>
+    
+    Generated on {timestamp}
 
 
     <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->