Using Slug in URL with Django

I will show how we will use slug in our blog. So, what is this slug? A slug represents of the current page in the URL. Most of the time, the page title is used as a slug. There are too much examples to prove it. Well, my blog isn't big but it uses Blogger structure. This one of the examples as a slug from my blog post:Also, if you look some questions from stackoverflow. You can see they use /question_id/slug-text...
Read more »

Changing View as Generic View in Django

We have only used function-based views so far. I will use class-based generic views in this post. Also there are class-based views and function-based generic views.Generic views are provides simpler use than normal views. We don't need to defining context, and no need to using render method. Because generic views will do this for us.Firstly, I'm going to open views.py in the myblog application folder....
Read more »

Using Image in the Post with Django

We came how to use image in Django. We made a comment section for our blog, and we could add comment to the posts as well. An image file is actually static files. But, I'm not store them into the static folder, I will stored these files in folder called media. Why? Because the files will be uploaded from user. We don't use it for template design. If we use image for web design, then we should put...
Read more »

Create Comment Form with Django

We made comment section for post detail pages in the previous post. We are going to create comment form for this section, and we are going to able to post comment from the post page.I will create a new file called comment_form.html in templates folder and I edited to comment.html like in the below: <div class="comment-area"> <div class="comment-header"> <h5 class="comment-main-title">Comments</h5> ...
Read more »

Creating Comment Section for Blog in Django

Almost each blog has comment section for each post below, and because of that I want to add this too. Let's think about comment. Each post contains none or one comment or one more comments. If the post is deleted then all comments related must be deleted. I will try to make this with model called Comment. Let's create this model at first: class Comment(models.Model): username = models.CharField(max_length=30) ...
Read more »

Adding Custom 404 Page Not Found in Django

The posts that already exist can be seen in own detail pages. But what if some users want to try open the posts that doesn't exist, or maybe we had a post from past but we deleted it. However, some links can point this deleted post. In this case, we should use 404 page.Let's try open the post that not exist with url link:This is not what we want to show when the post doesn't exist. Open the views.py...
Read more »

Giving Style to Blog with Django

We already got progress on Django. I made a blog application in this tutorial. Of course, this project is unfinished. That's is a journey to completion of the project. In this post, I'm going to give style our blog. But this will be optional for you. You can give different styles compared to what I gave. I already used Bootstrap in the project. So, this will be very helpful. I'm going to use...
Read more »

Create a Blog Application with Django

In this post, we are going to create our blog using Django. Firstly, Python and Django must be installed on the computer. You can download it from Django official website, also you can learn how to install it on your computer.I will use Windows operating system when I will make this application. So let's create our project at first: C:\Users\0xcoder\Desktop>django-admin startproject mysite After...
Read more »