Site icon JnPnote

Following Django Tutorial (Todo App)-Part5

This post is for myself to remember how to start the basic Django project.
I did follow the tutorial from the JustDjango Learn website free tutorial.
And this is the first tutorial named Django Crash Course.
As previous parts, I am not going over all the details and descriptions for each part. There are good explanations on video of the JustDjango Learn. So, visit their site and try their tutorials if you need more details. Also, the orders of this post and their video might be different because I put things first what I think should come first.

This post will be about styling with bootstrap.

1. Use Bootstrap

2. base template

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
</head>
<body>
	
</body>
</html>
	{% block content %}
	{% endblock content %}

3. Reformat todo_list

4. Retouch all the styles

Done for this project.
But I will maybe continue one more part to add requirements file and .gitignore file.

Exit mobile version