Closed ryancurrah closed 9 years ago
On page 86 the continuation of example 7-4 refers to the wrong app-level url config in reverse.
def get_success_url(self): return reverse("tastes:detail", kwargs={"pk": self.object.pk})
Should be:
def get_success_url(self): return reverse("tastings:detail", kwargs={"pk": self.object.pk})
:ship:
On page 86 the continuation of example 7-4 refers to the wrong app-level url config in reverse.
Should be: