Click here to Skip to main content
15,885,878 members
Articles / Programming Languages / Python

Handling User-Submitted Content with Django

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
20 Aug 2019CPOL3 min read 4.9K   1   3
Use Django logins to accept user "likes" and content submission

Introduction

One of the development communities I'm involved with has a store to help people download projects, but the store has no comment or voting capability. To find the good projects, we have to download and test each project ourselves. To help the community share the tests and feedback, my friend and I built a simple review site with Django in one day.

You can see the live site below, create an account, practice "liking" entries, and see the content upload capability.

Although the site still needs polishing, I had fun getting something up quickly with Django and letting people upload their own content the day after I came up with the idea to build the site.

Background

The site interface is simple, with a listing of the project icon, a review title, review summary, and like button for the review.

Image 1

The core part of the project was to create a user login to accomplish these goals:

  • limit content creation and votes to only people that logged in
  • list username with review
  • require login to download some assets that required agreement from the user such as sample code or special technical information from the vendor

Image 2

Registration is handled with a simple HTML form.

Image 3

Once you're logged in, you can vote and submit content.

Image 4

Using the Code

The full views.py file to create the account, login, and logout is here:

Account Creation

The section that creates the account is:

Python
user = User.objects.create_user(request.POST['username'], password=request.POST['password1'],
                    email=request.POST['email'])
auth.login(request, user)

Content Creation

Content creation is handled by another views.py file that is available at:

I ran into difficulties with detecting a blank image upload field. The code for how I handled this problem is:

Python
# handle condition when there is no icon uploaded
if not request.FILES.get('icon', False):
    plugin.icon = 'theta_logo.png'
else:
    plugin.icon = request.FILES['icon']
# handle condition when no image is uploaded
if not request.FILES.get('image', False):
    plugin.image = 'invisible.png'
else:
    plugin.image = request.FILES['image']

Even after searching on the Internet and Stackoverflow, I still couldn't set a default image in the model. I ended up using the following process:

  1. save a default logo and an invisible 1 pixel image into the media folder
  2. check for an empty image with request.FILES.get('name_from_form', False)
  3. if the image is blank, set it to the default image

plugin.image and plugin.icon refer to the fields defined in models.py.

Python
image = models.ImageField(upload_to='images/')
icon = models.ImageField(upload_to='images/')

The full models.py is at:

Order by Newest Post First

The newest post is at the top of the list. This was surprisingly simple to implement with order_by('-pk'). The key part is the minus sign before the primary key 'pk'. The minus sign reverses the order.

Python
def home(request):
    plugins = ThetaPlugins.objects.order_by('-pk')
    return render(request, 'theta_plugins/home.html', {'plugins': plugins})

Protecting Content

Gating content such as technical documentation that requires agreement is easy if you connect the account creation to an agreement of the terms of service or license. In views.py file, you can use the @login_required decorator to gate the content or action. That's all you need to do.

Python
from django.shortcuts import render
from django.contrib.auth.decorators import login_required

def home(request):
    return render(request, 'theta_plugins/home.html')

@login_required
def create(request):
    return render(request, 'theta_plugins/create.html')

Points of Interest

The most interesting part of the project was to allow people to create their own content and interact with the site with features like "thumbs up". Django makes this amazingly fast and easy. If web designers are primarily using tools like Bootstrap, CSS, HTML, it may be at first seem difficult to create a full site to handle user-generated content and voting. However, once you get started, everything will fall into place and you'll be able to finish your project. Django is an old web framework, but that means there are many tutorials out there for free and almost every problem you encounter has already been solved by other people.

Next Steps

The text input is the weakest part of the application. I'm considering implementing a simple Markdown Editor in Vue based on this simple example:

History

  • 21st August, 2019: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWhere are the html codes? Pin
Member 1475794127-Feb-20 20:44
Member 1475794127-Feb-20 20:44 
AnswerRe: Where are the html codes? Pin
Member 1475794127-Feb-20 21:03
Member 1475794127-Feb-20 21:03 
PraiseVote 5 Pin
EhabAhmed23-Aug-19 4:24
EhabAhmed23-Aug-19 4:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.