Django: can “double” 'render_to_response' be unified into only one view?
问题 I have defined two functions in views.py to obtain first prova.html with certain elementimenu and then, after clicking over one of them, I obtain again the page with elementimenu and elementi associated to elementimenu with the same id i.e.: another_app.model.py ... class ElementiTab(models.Model): author = models.ForeignKey('auth.User', null=True, blank=False) des = models.CharField(max_length=30) x = models.FloatField() y = models.FloatField() res = models.FloatField(default=0) created_date