Skip to content
Snippets Groups Projects
Commit 649269df authored by Dan Braghis's avatar Dan Braghis
Browse files

Fix determination absolute url

parent 9121a7c6
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ class Determination(models.Model):
unique_together = ('author', 'submission')
def get_absolute_url(self):
return reverse('apply:submissions:determinations:review', args=(self.id,))
return reverse('apply:submissions:determinations:detail', args=(self.id,))
def __str__(self):
return f'Determination for {self.submission.title} by {self.author!s}'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment