Django has template filter that can be used for multiple time displays. In this video we will use the timeuntil filter to show a count down of the time for our todo app lists. In the list_task.html templates, add the following...
Category - Todo App
1. Add Bootstrap CDNs and jQuery CDNs to all templates. <link rel="stylesheet" href="" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet"...
Make a view for deleting the Todo list. When this view is called, its gonna render the template and ask if the user really wanted to delete the object. If the user select yes, that will trigger a post request which deletes the...
1. In video number 3, we created a form used to input data. In this step, we will create another form for updating the data. This will include ad additional field ‘complete‘. The complete will be selected when you...
In the previous video, we have made the table to hold our data. In this one, I will take you through how to input data in django default database (SQLite3). I will also show you how to list out the data in the...