mirror of
https://gitlab.com/brutaldon/brutaldon.git
synced 2024-11-02 16:37:19 -04:00
After submitting a reply, jump right to the message you are replying to.
This commit is contained in:
parent
a4dbe81aa1
commit
c4c3117caa
@ -659,14 +659,15 @@ def reply(request, id):
|
||||
'own_acct': request.session['user'],
|
||||
'notifications': notifications,
|
||||
'preferences': account.preferences})
|
||||
return redirect(thread, id)
|
||||
return HttpResponseRedirect(reverse('thread', args=[id]) + "#toot-"+str(id))
|
||||
else:
|
||||
return render(request, 'main/reply.html',
|
||||
{'context': context, 'toot': toot, 'form': form, 'reply': True,
|
||||
'own_acct': request.session['user'],
|
||||
'preferences': account.preferences})
|
||||
else:
|
||||
return redirect(reply, id)
|
||||
return HttpResponseRedirect(reverse('reply', args=[id]) + "#toot-"+str(id))
|
||||
|
||||
|
||||
@never_cache
|
||||
@br_login_required
|
||||
|
Loading…
Reference in New Issue
Block a user