diff --git a/commentaries/templates/commentaries/commentary_detail.html b/commentaries/templates/commentaries/commentary_detail.html
index 901c3ca2b08b3209b11ab26cde2044fe8f10bfd7..d531e197cd226f9b25c1f84254572b5d02fbb120 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 8d9eccc85d477c0e8544dc26f2a9ed1d9a1dbebe..37a8803f0830ed6c05728972ebcfeb5d64c4bfdd 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 4b45e275003ae4735a658d641b8c5aea163868d9..cc0c83073b385159eea6aadadae4ee01f3c23c4f 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 5f725a2d07819d775d997c15ac18b3a7761f174f..b2f3ba2892204a0ad17a2c33f1665c0b7c97af0e 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 197886c6c713b03101909c969617360684f7d82b..a22f47a06d54ca756152ea7daaa9baf3e1b930f6 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 d81cdd179413af5bf1aa7b0bda4bac7f79b0d80e..bfdf113a35e3e894cd5ec71938f8eee59601ac94 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: