diff --git a/commentaries/views.py b/commentaries/views.py index 0e596397c79e847e1c7f4c4e0ae844de3d458cfd..bf0b2633fe9bfa558bdc4ab63b9a9050ab3fadf5 100644 --- a/commentaries/views.py +++ b/commentaries/views.py @@ -166,8 +166,6 @@ def browse(request, discipline, nrweeksback): return render(request, 'commentaries/commentaries.html', context) -#def commentary_detail(request, commentary_id): -# commentary = get_object_or_404(Commentary, pk=commentary_id) def commentary_detail(request, arxiv_or_DOI_string): commentary = get_object_or_404(Commentary, arxiv_or_DOI_string=arxiv_or_DOI_string) comments = commentary.comment_set.all() @@ -193,7 +191,7 @@ def commentary_detail(request, arxiv_or_DOI_string): newcomment.save() author.nr_comments = Comment.objects.filter(author=author).count() author.save() - request.session['commentary_id'] = commentary_id + request.session['commentary_id'] = commentary.id return HttpResponseRedirect(reverse('comments:comment_submission_ack')) else: form = CommentForm() diff --git a/comments/views.py b/comments/views.py index cf12ec57df6270c32a06bd0dd5b8f9d61f582168..071fb19d87ccc01bf454e2fcd9452b2179fc1735 100644 --- a/comments/views.py +++ b/comments/views.py @@ -138,7 +138,7 @@ def express_opinion(request, comment_id, opinion): if comment.submission is not None: return HttpResponseRedirect('/submission/' + str(comment.submission.id) + '/#comment_id' + str(comment.id)) if comment.commentary is not None: - return HttpResponseRedirect('/commentary/' + str(comment.commentary.id) + '/#comment_id' + str(comment.id)) + return HttpResponseRedirect('/commentary/' + str(comment.commentary.arxiv_or_DOI_string) + '/#comment_id' + str(comment.id)) if comment.thesislink is not None: return HttpResponseRedirect('/thesis/' + str(comment.thesislink.id) + '/#comment_id' + str(comment.id)) else: diff --git a/scipost/templates/scipost/comments_block.html b/scipost/templates/scipost/comments_block.html index 735b376436b8717c0e0fae2f8bef3ed0dd22adde..3b2c427c8b91967450ede8439cd8b0c7e7188a31 100644 --- a/scipost/templates/scipost/comments_block.html +++ b/scipost/templates/scipost/comments_block.html @@ -53,11 +53,7 @@ <div class="row"> <div class="col-1"></div> <hr style="border-style: dotted;" /> -<!-- - <div class="col-3"> - {{ reply.print_identifier|safe }} - </div> ---> + <div class="flex-container"> <div class="flex-commentbox"> {{ reply.print_identifier|safe }}