1 00:00:00,000 --> 00:00:00,998 2 00:00:00,998 --> 00:00:02,790 SPEAKER 1: Now let's allow our user to view 3 00:00:02,790 --> 00:00:07,380 a history of all of the transactions that they've made on our website. 4 00:00:07,380 --> 00:00:10,750 We'll display this as a chronology of the user's interactions, 5 00:00:10,750 --> 00:00:13,410 whether or not a stock was bought or sold, 6 00:00:13,410 --> 00:00:17,850 that stock symbol, and the purchase or sale price, the number of shares 7 00:00:17,850 --> 00:00:21,600 bought or sold, and then finally, the date and time at which that transaction 8 00:00:21,600 --> 00:00:22,980 occurred. 9 00:00:22,980 --> 00:00:25,500 So all of this information then must be contained 10 00:00:25,500 --> 00:00:29,860 within whichever table structure you have set up in your database. 11 00:00:29,860 --> 00:00:35,190 So this will also depend on your implementation of buy and sell. 12 00:00:35,190 --> 00:00:41,200 Create one template for history and then edit that route in application.py. 13 00:00:41,200 --> 00:00:42,956