django-rated-reviews icon indicating copy to clipboard operation
django-rated-reviews copied to clipboard

Rated reviews for Django

Results 4 django-rated-reviews issues
Sort by recently updated
recently updated
newest added

When I run `makemigrations` for my own project, `django` always generates a migration for `reviews`, `site-packages/reviews/migrations/0003_alter_review_content_type_alter_review_user.py` ```python # Generated by Django 4.2.1 on 2023-06-09 13:57 from django.conf import settings from...

Say I have `Review` on a `Toy` that is made by `Manufacture`. When I try to gather reviews for particular manufacture, I have ``` class Toy(models.Model): reviews = GenericRelation( to="reviews.Review",...

1. I don't see links to django_comments app 2. I don't see unique_together = ('user', 'comment',), so user can provide any review per item 3. No email notifications

enhancement

Hi, Thank you for your work. I have a question, have you though about giving GraphQL/REST support to this good package? I'm planning to use it in a website that...