We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e7e1e commit 729f273Copy full SHA for 729f273
app/Entirety/projects/views.py
@@ -127,7 +127,7 @@ def get_success_url(self):
127
+ " has updated the project "
128
+ self.object.name
129
)
130
- return reverse("projects:index")
+ return reverse("projects:detail", kwargs={"pk": self.object.pk})
131
132
def get_form_kwargs(self):
133
kwargs = super(Update, self).get_form_kwargs()
@@ -155,7 +155,7 @@ def get_success_url(self):
155
+ " has created the project "
156
157
158
159
160
161
kwargs = super(Create, self).get_form_kwargs()
0 commit comments