alireza yazdandoost
alireza yazdandoost
I really appreciated your comprehensive answer. I could get the URL using your solution. I wanted to ask your idea about getting this URL dynamically using the Customer model. I...
Here is my AnswerSheetModel: ```python class AnswerSheetModel(BaseModel): questionnaire = models.ForeignKey(QuestionnaireModel, on_delete=models.DO_NOTHING, related_name='answers') customer = models.ForeignKey(Customer, on_delete=models.DO_NOTHING, null=False, blank=False) ip = models.CharField(null=True, max_length=20) def __str__(self): return self.questionnaire.name + ': ' +...