let suppose I have 2 models: *class String(models.model):* * string = models.textarea(null = True, blank = True)* * user = models.ForeignKey(user, on_delete=models.CASCADE)* * def __str__(self):* * return self.string*
and *class Song_Words_Count(models.model):* * song = models.ForeignKey(user, on_delete=models.SET_NULL)* * def __str__(self):* * return self.song* now what I want to do at django admin side that the string added in* "String" *model should be saved in Song_Wors_count model and string should be splitted in a single word and frequency should be counted this way: word word_freq word1 10 word2 15 word3 20 I need Urgent help please. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/f53fc668-ca86-4c51-8d4c-673dee3d180cn%40googlegroups.com.

