Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Tree Chip Net
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 =

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread DJANGO DEVELOPER
hi Sebastian, do you know how can I resolve my problem? I want to count same words in a string. after splitting it On Fri, Jul 9, 2021 at 10:14 PM DJANGO DEVELOPER wrote: > Hi Peter, thanks for your reply. Sorry I have m2m relationship of User > model with Song model and I am using m2m_changes

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread DJANGO DEVELOPER
Hi Peter, thanks for your reply. Sorry I have m2m relationship of User model with Song model and I am using m2m_changes signal for it but still not giving me the desired output. On Fri, Jul 9, 2021 at 9:20 PM Sebastian Jung wrote: > Hello Peter, > > ich would make it with a signal. > > Here a

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Sebastian Jung
Hello Peter, ich would make it with a signal. Here a another example to use a post save signal: from django.db.models.signals import post_savefrom django.dispatch import receiver class TransactionDetail(models.Model): product = models.ForeignKey(Product) # method for

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Tech Cue
*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* > *class Song_Words_Count(models.model):* > *song = models.ForeignKey(user,

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread 'Peter van der Does' via Django users
Overwrite the save method on the String model and when you hit save you split and save the words in the S_W_C model. This does mean when you update the String record all the words are added to the S_W_C model as well, as there is no correlation between the two model you don't know if that String

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-08 Thread DJANGO DEVELOPER
is there anyone who can help me here? On Fri, Jul 9, 2021 at 2:51 AM DJANGO DEVELOPER wrote: > 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

Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-08 Thread DJANGO DEVELOPER
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 =