diff --git a/commentaries/templates/commentaries/commentary_detail.html b/commentaries/templates/commentaries/commentary_detail.html index 0b9158444dccb37bc621e7161551805efa57b6d3..44796d7a0985032499afd747d188ae9f9c622caa 100644 --- a/commentaries/templates/commentaries/commentary_detail.html +++ b/commentaries/templates/commentaries/commentary_detail.html @@ -23,7 +23,7 @@ {% if commentary.comments.vetted %} <hr class="divider"> - {% include 'scipost/comments_block.html' with comments=commentary.comments.vetted type_of_object='Commentary' %} + {% include 'comments/comments_block.html' with comments=commentary.comments.vetted type_of_object='Commentary' %} {% endif %} {% include 'comments/new_comment.html' with object_id=commentary.id type_of_object='commentary' open_for_commenting=commentary.open_for_commenting %} diff --git a/scipost/templates/scipost/comments_block.html b/comments/templates/comments/comments_block.html similarity index 100% rename from scipost/templates/scipost/comments_block.html rename to comments/templates/comments/comments_block.html diff --git a/submissions/templates/submissions/submission_detail.html b/submissions/templates/submissions/submission_detail.html index 510d67e9b836affbb77398c406afffcd6d702aa6..fa6a602ba696a779a57fe03439d36655e8b4c802 100644 --- a/submissions/templates/submissions/submission_detail.html +++ b/submissions/templates/submissions/submission_detail.html @@ -158,7 +158,7 @@ {% if submission.comments.vetted %} <hr class="lg"> - {% include 'scipost/comments_block.html' with comments=submission.comments.vetted %} + {% include 'comments/comments_block.html' with comments=submission.comments.vetted %} {% endif %} diff --git a/theses/templates/theses/thesis_detail.html b/theses/templates/theses/thesis_detail.html index 48e8afdf8f84f1f21c5076b8c4cdee1ecdea72a6..010e84617a917890959aa6de0728b35d41c4c229 100644 --- a/theses/templates/theses/thesis_detail.html +++ b/theses/templates/theses/thesis_detail.html @@ -16,7 +16,7 @@ {% if thesislink.comments.vetted %} <hr class="divider"> - {% include 'scipost/comments_block.html' with comments=thesislink.comments.vetted type_of_object='ThesisLink' %} + {% include 'comments/comments_block.html' with comments=thesislink.comments.vetted type_of_object='ThesisLink' %} {% endif %} {% include 'comments/new_comment.html' with object_id=thesislink.id type_of_object='thesislink' open_for_commenting=thesislink.open_for_commenting %}