From 2275385226379e17989c40195eb50ba5ec693d52 Mon Sep 17 00:00:00 2001
From: "J.-S. Caux" <J.S.Caux@uva.nl>
Date: Wed, 9 Dec 2015 17:25:52 +0100
Subject: [PATCH] Bug fixes in [apps]/views and templates (to reflect new app
 structure as of v1.1)

---
 commentaries/templates/commentaries/commentary_detail.html  | 4 ++--
 .../templates/commentaries/vet_commentary_requests.html     | 2 +-
 commentaries/views.py                                       | 5 ++++-
 contributors/views.py                                       | 6 ++++++
 .../templates/submissions/sub_and_ref_procedure.html        | 2 +-
 submissions/views.py                                        | 6 ++++++
 6 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/commentaries/templates/commentaries/commentary_detail.html b/commentaries/templates/commentaries/commentary_detail.html
index 901c3ca2b..d531e197c 100644
--- a/commentaries/templates/commentaries/commentary_detail.html
+++ b/commentaries/templates/commentaries/commentary_detail.html
@@ -26,7 +26,7 @@
       </ul>
 
       {% if user.is_authenticated %}
-      <form action="{% url 'commentaries:vote_on_commentary' commentary_id=commentary.id %}" method="post" class="ratingsdata">
+      <form action="{% url 'ratings:vote_on_commentary' commentary_id=commentary.id %}" method="post" class="ratingsdata">
 	{% csrf_token %}
 	<ul>
 	  <li>Rate this publication:</li>
@@ -81,7 +81,7 @@
       </ul>
 
       {% if user.is_authenticated %}
-      <form action="{% url 'comments:vote_on_comment' comment_id=comment.id %}" method="post" class="ratingsdata">
+      <form action="{% url 'ratings:vote_on_comment' comment_id=comment.id %}" method="post" class="ratingsdata">
 	{% csrf_token %}
 	<ul>
 	  <li>Rate this comment:</li>
diff --git a/commentaries/templates/commentaries/vet_commentary_requests.html b/commentaries/templates/commentaries/vet_commentary_requests.html
index 8d9eccc85..37a8803f0 100644
--- a/commentaries/templates/commentaries/vet_commentary_requests.html
+++ b/commentaries/templates/commentaries/vet_commentary_requests.html
@@ -17,7 +17,7 @@
       <table>
 	<tr><td>Title: </td><td>{{ commentary_to_vet.pub_title }}</td></tr>
 	<tr><td>Author(s): </td><td>{{ commentary_to_vet.author_list }}</td></tr>
-	<tr><td>arXiv link (including version nr): </td><td><a href="{{ commentary_to_vet.pub_DOI_link }}">{{ commentary_to_vet.pub_DOI_link }}</a></td></tr>
+	<tr><td>arXiv link (including version nr): </td><td><a href="{{ commentary_to_vet.arxiv_link }}">{{ commentary_to_vet.arxiv_link }}</a></td></tr>
 	<tr><td>DOI Link: </td><td><a href="{{ commentary_to_vet.pub_DOI_link }}">{{ commentary_to_vet.pub_DOI_link }}</a></td></tr>
 	<tr><td>Date published: </td><td>{{ commentary_to_vet.pub_date }}</td></tr>
       </table>
diff --git a/commentaries/views.py b/commentaries/views.py
index 4b45e2750..cc0c83073 100644
--- a/commentaries/views.py
+++ b/commentaries/views.py
@@ -12,6 +12,9 @@ from django.db.models import Avg
 from .models import *
 from .forms import *
 
+from comments.models import Comment, AuthorReply
+from comments.forms import CommentForm
+from ratings.forms import CommentRatingForm, CommentaryRatingForm
 
 ################
 # Commentaries
@@ -54,7 +57,7 @@ def vet_commentary_requests(request):
     commentary_requests_to_vet = Commentary.objects.filter(vetted=False)
     form = VetCommentaryForm()
     context = {'contributor': contributor, 'commentary_requests_to_vet': commentary_requests_to_vet, 'form': form }
-    return render(request, 'scipost/vet_commentary_requests.html', context)
+    return render(request, 'commentaries/vet_commentary_requests.html', context)
 
 @csrf_protect
 def vet_commentary_request_ack(request, commentary_id):
diff --git a/contributors/views.py b/contributors/views.py
index 5f725a2d0..b2f3ba289 100644
--- a/contributors/views.py
+++ b/contributors/views.py
@@ -12,6 +12,12 @@ from django.db.models import Avg
 from .models import *
 from .forms import *
 
+from commentaries.models import Commentary
+from comments.models import Comment, AuthorReply
+from contributors.models import Contributor
+from reports.models import Report
+from submissions.models import Submission
+
 
 ################
 # Registration
diff --git a/submissions/templates/submissions/sub_and_ref_procedure.html b/submissions/templates/submissions/sub_and_ref_procedure.html
index 197886c6c..a22f47a06 100644
--- a/submissions/templates/submissions/sub_and_ref_procedure.html
+++ b/submissions/templates/submissions/sub_and_ref_procedure.html
@@ -13,7 +13,7 @@
     <li>Make your preprint publicly available on arXiv</li>
     <li>After appearance on arXiv, fill the SciPost <a href="{% url 'submissions:submit_manuscript' %}">Submission</a> form, choosing which SciPost Journal you wish to submit to. </li>
   </ol>
-  <p>Note that you cannot submit directly to SciPost Physics Select. Submissions to SciPost Physics Letters deemed of superlative qualty will be editorially promoted to SPS.</p>
+  <p>Note that you cannot submit directly to SciPost Physics Select or SciPost Physics X. Submissions to SciPost Physics Letters deemed of superlative quality will be editorially promoted to SPS (and similarly for articles from SciPost Physics to SciPost Physics X).</p>
   <br/>
   <h3>Refereeing procedure</h3>
   <p>Papers submitted to SciPost are put through the <a href="{% url 'scipost:peer_witnessed_refereeing' %}">peer-witnessed refereeing</a> process, implementing the highest possible standard of refereeing. The precise procedure differs slightly between SciPost Journals but follows this pattern:</p>
diff --git a/submissions/views.py b/submissions/views.py
index d81cdd179..bfdf113a3 100644
--- a/submissions/views.py
+++ b/submissions/views.py
@@ -12,6 +12,12 @@ from django.db.models import Avg
 from .models import *
 from .forms import *
 
+from comments.models import Comment, AuthorReply
+from contributors.models import Contributor
+from submissions.models import Submission
+
+from comments.forms import CommentForm
+from ratings.forms import CommentRatingForm, ReportRatingForm, SubmissionRatingForm
 
 ###############
 # SUBMISSIONS:
-- 
GitLab