You have the Rating model in your application:
class Rating(models.Model):
film = models.CharField(max_length=128)
user = models.ForeignKey(User, on_delete=models.CASCADE)
value = models.IntegerField()
Create the RatingAdmin class and register it for the Rating model.