Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6774257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:45:55+00:00 2026-05-26T15:45:55+00:00

I’m new to Django, moved from PHP with Propel ORM engine. So here is

  • 0

I’m new to Django, moved from PHP with Propel ORM engine.
So here is what I am currently doing in Django. My website has several models like

  1. Book,
  2. Publisher,
  3. Comment,
  4. Article and so on (it’s not the point)

Each of them can can be
liked or disliked by a user (only once) changing the model’s rating by +1 or -1.

In terms of PHP i would create a behavior, for ex. “Rateable” which would add some fields and methods to the original model and query class (like get_rating(), order_by_rating(), etc) and create a separate table for each model, for ex. book_rating_history which would hold all of the ratings for each object, to determine if the user can or can’t change the rating (or show all object’s ratings, if necessary). So all I would need to do is to specify the “Rateable” behavior in the model declaration, and that’s all. Everything else is done automatically.

The question is – how to solve this in Django? How to model correctly? Which techniques do you use in similar cases?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T15:45:56+00:00Added an answer on May 26, 2026 at 3:45 pm

    You’ll want to store ratings and books separately, something like this (untested).

    from django.contrib.auth.models import User
    from django.db import models
    from django.db.models import Sum
    
    class BookRating(models.Model):
      user = models.ForeignKey(User)
      book = models.ForeignKey('Book')
    
      # you'll want to enforce that this is only ever +1 or -1
      rating = models.IntegerField()
    
      class Meta:
        unique_together = (('user', 'book'),)
    
    class Book(models.Model):
      title = models.CharField(max_length = 50)
    
      def rating(self):
        return BookRating.objects.filter(book = self).aggregate(Sum('rating'))
    

    unique_together enforces that each user can only rate a given book once.

    You can then use this something like:

    book = Book.objects.get(pk = 1)
    rating = book.rating()
    

    Add a comment if you have problems with this – I’ve not tested it, but hopefully this is enough to get you started.

    You can probably avoid each object (books, publishers, comments, articles) having a separate rating object using content types, if you want.

    Alternatively, you might consider looking at existing reusable apps that handle liking, like django-likes or phileo.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to count how many characters a certain string has in PHP, but
I want use html5's new tag to play a wav file (currently only supported
I am currently running into a problem where an element is coming back from
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I used javascript for loading a picture on my website depending on which small

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.