Compare commits

...

3 Commits

Author SHA1 Message Date
Gesche 621fef14f5 refactor: remove unnecessary toplevel folder
3 years ago
Gesche 04e10d3b23 move gitignore to lower level
3 years ago
Gesche f8f7eb09ee improve usability with redirect/links
3 years ago

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 84 KiB

@ -16,5 +16,8 @@
<br>
{% endfor %}
<a href="{% url 'writing:index' %}">Zurück</a>
</body>
</html>

@ -61,7 +61,12 @@ class StoryPartUpdate(LoginRequiredMixin, UpdateView):
model = StoryPart
fields = ['text']
template_name = 'writingtogether/story_part.html'
success_url = reverse_lazy('writing:index')
def get_success_url(self):
return reverse(
'writing:redirect_story_part',
kwargs={'story_round_pk': self.object.part_of.part_of_round.pk}
)
def get_context_data(self, **kwargs):
context = super(StoryPartUpdate, self).get_context_data(**kwargs)
Loading…
Cancel
Save