Hexon TheRipper

Results 3 comments of Hexon TheRipper

sudo apt-get install python3 python-dev python3-dev build-essential libssl-dev libffi-dev libxml2-dev libxslt1-dev zlib1g-dev sudo ./setup.py build install this should work

Say I have some models like: ``` class main(models.Model): status= models.CharField(max_length=20) class Tag(models.Model): tag1 = models.ForeignKey(main, on_delete=models.CASCADE) some_name= models.CharField(max_length=20) # And Other fields class Tag2(models.Model): some_field = models.ForeignKey(main, on_delete=models.CASCADE) #...

Well, the idea was to get the records through tag1_set while using the main model, and as I said earlier that the data is displayed, but then the search option...