From eec3ad9e5364627198234d7d9b0741ce000566db Mon Sep 17 00:00:00 2001
From: Jorran de Wit <jorrandewit@outlook.com>
Date: Mon, 14 Aug 2017 21:16:39 +0200
Subject: [PATCH] Clear old templates

---
 .../journals/create_metadata_xml.html         |  40 +------
 .../journals/harvest_citedby_links.html       |  74 ++++++------
 .../journals/initiate_publication.html        |  25 ++---
 .../scipost/assets/css/_breadcrumb.scss       |   2 +-
 .../static/scipost/assets/css/_general.scss   |   4 +
 scipost/static/scipost/assets/css/_nav.scss   |   2 +-
 .../static/scipost/assets/css/_navbar.scss    |   2 +-
 .../templates/scipost/already_activated.html  |  12 --
 scipost/templates/scipost/base.html           |   3 -
 .../templates/scipost/base_for_sidebar.html   |   3 -
 .../edit_invitation_personal_message.html     |  28 +++--
 scipost/templates/scipost/error.html          |  10 +-
 .../scipost/registration_invitation_sent.html |  12 +-
 .../scipost/reset_password_complete.html      |   4 +-
 scipost/views.py                              |   7 ++
 .../accept_or_decline_assignment_ack.html     |  19 ++--
 .../accept_or_decline_ref_invitation_ack.html |  20 ++--
 .../submissions/assignment_failed.html        |  22 ++--
 .../submissions/submit_manuscript.html        | 105 ------------------
 .../theses/vet_thesislink_requests.html       |  32 ------
 20 files changed, 114 insertions(+), 312 deletions(-)
 delete mode 100644 scipost/templates/scipost/already_activated.html
 delete mode 100644 submissions/templates/submissions/submit_manuscript.html
 delete mode 100644 theses/templates/theses/vet_thesislink_requests.html

diff --git a/journals/templates/journals/create_metadata_xml.html b/journals/templates/journals/create_metadata_xml.html
index f3fef8318..02603da8d 100644
--- a/journals/templates/journals/create_metadata_xml.html
+++ b/journals/templates/journals/create_metadata_xml.html
@@ -41,50 +41,12 @@
 
       <h3>Current metadata xml:</h3>
       <div>
-          <pre><code>
-              {{ publication.metadata_xml|linebreaks }}
-          </code></pre>
+          <pre><code>{{ publication.metadata_xml|linebreaksbr }}</code></pre>
       </div>
 
-      <hr class="hr6"/>
-
       <h3>Once you're happy with this metadata, you can <a href="{{publication.get_absolute_url}}">return to the publication's page</a> or to the <a href="{% url 'journals:manage_metadata' %}">metadata management page</a></h3>
 
     </div>
 </div>
 
-
 {% endblock content %}
-=======
-{% block bodysup %}
-
-
-<section>
-  <div class="flex-greybox">
-    <h1>Create metadata XML (for Crossref deposit)</h1>
-  </div>
-
-  {% if errormessage %}
-  <h2 style="color: red;">{{ errormessage }}</h2>
-  {% endif %}
-
-  <form action="{% url 'journals:create_metadata_xml' publication.doi_label %}" method="post">
-    {% csrf_token %}
-    {{ create_metadata_xml_form.as_p }}
-    <input type="submit" value="Accept the metadata">
-  </form>
-
-  <hr class="hr6"/>
-
-  <h3>Current metadata xml:</h3>
-  <p>{{ publication.metadata_xml|linebreaks }}</p>
-
-  <hr class="hr6"/>
-
-  <h3>Once you're happy with this metadata, you can <a href="{{publication.get_absolute_url}}">return to the publication's page</a> or to the <a href="{% url 'journals:manage_metadata' %}">general metadata management page</a> or to <a href="{% url 'journals:manage_metadata' doi_label=publication.doi_label %}">this publication's metadata management page</a></h3>
-
-</section>
-
-
-{% endblock bodysup %}
->>>>>>> development
diff --git a/journals/templates/journals/harvest_citedby_links.html b/journals/templates/journals/harvest_citedby_links.html
index 5d10c46e5..9a9b94b4a 100644
--- a/journals/templates/journals/harvest_citedby_links.html
+++ b/journals/templates/journals/harvest_citedby_links.html
@@ -2,38 +2,41 @@
 
 {% block pagetitle %}: harvest cited-by links{% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
 
 
-<section>
-  <div class="flex-greybox">
-    <h1>Cited-by links</h1>
-  </div>
+<div class="row">
+      <div class="col-12">
+        <h1>Cited-by links</h1>
 
-  {% if errormessage %}
-  <h2 style="color: red;">{{ errormessage }}</h2>
-  {% endif %}
 
-  <h3>Response headers:</h3>
-  <p>{{ response_headers|linebreaks }}</p>
+      {% if errormessage %}
+      <h2 style="color: red;">{{ errormessage }}</h2>
+      {% endif %}
 
-  <h3>Response text:</h3>
-  <p>{{ response_text|linebreaks }}</p>
+      <h3>Response headers:</h3>
+      <p>{{ response_headers|linebreaks }}</p>
 
-  <h3>Response (deserialized):</h3>
-  <p>{{ response_deserialized }}</p>
-  <ul>
-    {% for obj in response_deserialized %}
-      <li>{{ obj }}
-        <ul>
-        {% for obj2 in obj %}
-          <li>{{ obj2 }}
+      <h3>Response text:</h3>
+      <p>{{ response_text|linebreaks }}</p>
+
+      <h3>Response (deserialized):</h3>
+      <p>{{ response_deserialized }}</p>
+      <ul>
+        {% for obj in response_deserialized %}
+          <li>{{ obj }}
             <ul>
-            {% for obj3 in obj2 %}
-              <li>{{ obj3 }}
+            {% for obj2 in obj %}
+              <li>{{ obj2 }}
                 <ul>
-                {% for obj4 in obj3 %}
-                  <li>{{ obj4 }}</li>
+                {% for obj3 in obj2 %}
+                  <li>{{ obj3 }}
+                    <ul>
+                    {% for obj4 in obj3 %}
+                      <li>{{ obj4 }}</li>
+                    {% endfor %}
+                    </ul>
+                  </li>
                 {% endfor %}
                 </ul>
               </li>
@@ -41,20 +44,17 @@
             </ul>
           </li>
         {% endfor %}
-        </ul>
-      </li>
-    {% endfor %}
-  </ul>
-
-  <h3>Citations</h3>
-  {% for cit in citations %}
-    {{ cit }}
-  {% endfor %}
-  {{ nr }}
+      </ul>
 
-  <h3><a href="{{publication.get_absolute_url}}">return to the publication's page</a> or to the <a href="{% url 'journals:manage_metadata' %}">metadata management page</a> or to <a href="{% url 'journals:manage_metadata' doi_label=publication.doi_label %}">this publication's metadata management page</a></h3>
+      <h3>Citations</h3>
+      {% for cit in citations %}
+        {{ cit }}
+      {% endfor %}
+      {{ nr }}
 
-</section>
+      <h3><a href="{{publication.get_absolute_url}}">return to the publication's page</a> or to the <a href="{% url 'journals:manage_metadata' %}">metadata management page</a> or to <a href="{% url 'journals:manage_metadata' doi_label=publication.doi_label %}">this publication's metadata management page</a></h3>
+    </div>
+</div>
 
 
-{% endblock bodysup %}
+{% endblock content %}
diff --git a/journals/templates/journals/initiate_publication.html b/journals/templates/journals/initiate_publication.html
index c4946383e..c9fa7acc8 100644
--- a/journals/templates/journals/initiate_publication.html
+++ b/journals/templates/journals/initiate_publication.html
@@ -1,26 +1,21 @@
 {% extends 'scipost/base.html' %}
 
-{% block pagetitle %}: Initiate publication{% endblock pagetitle %}
+{% load bootstrap %}
 
-{% block bodysup %}
+{% block pagetitle %}: Initiate publication{% endblock pagetitle %}
 
+{% block content %}
 
-<section>
-  <div class="flex-greybox">
-    <h1>Initiate publication page</h1>
-  </div>
 
-  {% if errormessage %}
-    <h2 style="color: red;">{{ errormessage }}</h2>
-  {% endif %}
+<h1>Initiate publication page</h1>
 
-  <form action="{% url 'journals:initiate_publication' %}" method="post" enctype="multipart/form-data">
+<form action="{% url 'journals:initiate_publication' %}" method="post" enctype="multipart/form-data">
     {% csrf_token %}
-    {{ initiate_publication_form.as_p }}
-    <input type="submit" value="Submit">
-  </form>
+    {{ initiate_publication_form|bootstrap }}
+    <input type="submit" class="btn btn-primary" value="Submit">
+</form>
+
 
-</section>
 
 
-{% endblock bodysup %}
+{% endblock %}
diff --git a/scipost/static/scipost/assets/css/_breadcrumb.scss b/scipost/static/scipost/assets/css/_breadcrumb.scss
index 8c4f8e994..1b59ea0a0 100644
--- a/scipost/static/scipost/assets/css/_breadcrumb.scss
+++ b/scipost/static/scipost/assets/css/_breadcrumb.scss
@@ -1,5 +1,5 @@
 .breadcrumb {
-    margin-top: -0.75rem;
+    margin-top: -1.5rem;
     margin-bottom: 1.5rem;
     border-top: 1px solid #fff;
     border-bottom: 1px solid #ddd;
diff --git a/scipost/static/scipost/assets/css/_general.scss b/scipost/static/scipost/assets/css/_general.scss
index 002192052..bd291703e 100644
--- a/scipost/static/scipost/assets/css/_general.scss
+++ b/scipost/static/scipost/assets/css/_general.scss
@@ -35,3 +35,7 @@ footer .logos a {
     max-width: 100px;
     padding: 0 0.25rem;
 }
+
+body > .container {
+    padding-bottom: 1.5rem;
+}
diff --git a/scipost/static/scipost/assets/css/_nav.scss b/scipost/static/scipost/assets/css/_nav.scss
index 9f69a08b9..4ff137786 100644
--- a/scipost/static/scipost/assets/css/_nav.scss
+++ b/scipost/static/scipost/assets/css/_nav.scss
@@ -64,7 +64,7 @@
 }
 
 nav.submenu {
-    margin-top: -0.75rem;
+    margin-top: -1.5rem;
     margin-bottom: 1rem;
     padding: 0.75rem 1rem;
     background-color: $scipost-white;
diff --git a/scipost/static/scipost/assets/css/_navbar.scss b/scipost/static/scipost/assets/css/_navbar.scss
index 6fa3d1153..b067e77bb 100644
--- a/scipost/static/scipost/assets/css/_navbar.scss
+++ b/scipost/static/scipost/assets/css/_navbar.scss
@@ -3,7 +3,7 @@
  *
  */
 .navbar {
-    margin-bottom: 0.75rem;
+    margin-bottom: 1.5rem;
 
     &.main-nav {
         border-bottom: 1px solid #ddd;
diff --git a/scipost/templates/scipost/already_activated.html b/scipost/templates/scipost/already_activated.html
deleted file mode 100644
index e2b5be6a5..000000000
--- a/scipost/templates/scipost/already_activated.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends 'scipost/base.html' %}
-
-{% block pagetitle %}: already activated (email confirmed){% endblock pagetitle %}
-
-{% block bodysup %}
-
-<section>
-  <h1>Your email has already been confirmed.</h1>
-  <p>Please wait for vetting of your registration. We shall strive to send you an update by email within 24 hours.</p>
-</section>
-
-{% endblock bodysup %}
diff --git a/scipost/templates/scipost/base.html b/scipost/templates/scipost/base.html
index c223d7c9a..5a0d411a2 100644
--- a/scipost/templates/scipost/base.html
+++ b/scipost/templates/scipost/base.html
@@ -9,9 +9,6 @@
         {% block content_footer %}{% endblock content_footer %}
     </div>
 
-    {% block bodysup %}
-    {% endblock bodysup %}
-
     {% block secondary_footer %}{% endblock secondary_footer %}
 
     {% include 'scipost/footer.html' %}
diff --git a/scipost/templates/scipost/base_for_sidebar.html b/scipost/templates/scipost/base_for_sidebar.html
index 86d25e5ba..6c413c9a8 100644
--- a/scipost/templates/scipost/base_for_sidebar.html
+++ b/scipost/templates/scipost/base_for_sidebar.html
@@ -11,9 +11,6 @@
                 {% block content_footer %}{% endblock content_footer %}
             </div>
 
-            {% block bodysup %}
-            {% endblock bodysup %}
-
             {% block secondary_footer %}{% endblock secondary_footer %}
 
         </div>
diff --git a/scipost/templates/scipost/edit_invitation_personal_message.html b/scipost/templates/scipost/edit_invitation_personal_message.html
index c66d52693..5a63e6072 100644
--- a/scipost/templates/scipost/edit_invitation_personal_message.html
+++ b/scipost/templates/scipost/edit_invitation_personal_message.html
@@ -1,23 +1,21 @@
 {% extends 'scipost/base.html' %}
 
+{% load scipost_extras %}
+{% load bootstrap %}
+
 {% block pagetitle %}: registration invitation: edit personal message{% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
 
-{% load scipost_extras %}
+<h2>Edit invitation's personal message: for {{ invitation.first_name }} {{ invitation.last_name }}</h2>
 
-<section>
-  <div class="flex-greybox">
-    <h2>Edit invitation's personal message: for {{ invitation.first_name }} {{ invitation.last_name }}</h2>
-  </div>
-  {% if errormessage %}
-    <h3 style="color: red;">{{ errormessage }}</h3>
-  {% endif %}
-  <form action="{% url 'scipost:edit_invitation_personal_message' invitation_id=invitation.id %}" method="post">
+{% if errormessage %}
+    <h3 class="text-danger">{{ errormessage }}</h3>
+{% endif %}
+<form action="{% url 'scipost:edit_invitation_personal_message' invitation_id=invitation.id %}" method="post">
     {% csrf_token %}
-    {{ form }}
-    <input type="submit" value="Submit">
-  </form>
-</section>
+    {{ form|bootstrap }}
+    <input type="submit" value="Submit" class="btn btn-primary">
+</form>
 
-{% endblock bodysup %}
+{% endblock %}
diff --git a/scipost/templates/scipost/error.html b/scipost/templates/scipost/error.html
index 75741f8c7..6a638b545 100644
--- a/scipost/templates/scipost/error.html
+++ b/scipost/templates/scipost/error.html
@@ -2,11 +2,9 @@
 
 {% block pagetitle %}: error{% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
 
-<section>
-  <h3 style="color: red;">Error</h3>
-  <p>{{ errormessage }}</p>
-</section>
+<h3 class="text-danger">Error</h3>
+<p>{{ errormessage }}</p>
 
-{% endblock bodysup %}
+{% endblock %}
diff --git a/scipost/templates/scipost/registration_invitation_sent.html b/scipost/templates/scipost/registration_invitation_sent.html
index b58b41fbd..f2908e563 100644
--- a/scipost/templates/scipost/registration_invitation_sent.html
+++ b/scipost/templates/scipost/registration_invitation_sent.html
@@ -2,13 +2,9 @@
 
 {% block pagetitle %}: registration invitation sent{% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
 
-<section>
-  <h1>Registration Invitation sent</h1>
+<h1>Registration Invitation sent</h1>
+<p>Return to the <a href="{% url 'scipost:registration_invitations' %}">registration invitations page</a>.</p>
 
-  <p>Return to the <a href="{% url 'scipost:registration_invitations' %}">registration invitations page</a>.</p>
-
-</section>
-
-{% endblock bodysup %}
+{% endblock content %}
diff --git a/scipost/templates/scipost/reset_password_complete.html b/scipost/templates/scipost/reset_password_complete.html
index dd226a8df..5b8a2148b 100644
--- a/scipost/templates/scipost/reset_password_complete.html
+++ b/scipost/templates/scipost/reset_password_complete.html
@@ -2,6 +2,6 @@
 
 {% block pagetitle %}: Reset password complete{% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
     <p>You have successfully reset your password.</p>
-{% endblock bodysup %}
+{% endblock content %}
diff --git a/scipost/views.py b/scipost/views.py
index c211b4ef1..76c12a1db 100644
--- a/scipost/views.py
+++ b/scipost/views.py
@@ -627,6 +627,13 @@ def remove_registration_invitation(request, invitation_id):
 
 @permission_required('scipost.can_manage_registration_invitations', return_403=True)
 def edit_invitation_personal_message(request, invitation_id):
+    """
+
+    DOES THIS THING STILL WORK? OR CAN IT BE REMOVED?
+
+    -- JdW (August 14th, 2017)
+
+    """
     invitation = get_object_or_404(RegistrationInvitation, pk=invitation_id)
     errormessage = None
     if request.method == 'POST':
diff --git a/submissions/templates/submissions/accept_or_decline_assignment_ack.html b/submissions/templates/submissions/accept_or_decline_assignment_ack.html
index ea1c7ede2..67a7551cc 100644
--- a/submissions/templates/submissions/accept_or_decline_assignment_ack.html
+++ b/submissions/templates/submissions/accept_or_decline_assignment_ack.html
@@ -2,20 +2,19 @@
 
 {% block pagetitle %}: accept or decline assignment (ack){% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
+
 
-<section>
   {% if errormessage %}
-  <p>{{ errormessage }}</p>
-  <p>Return to the <a href="{% url 'submissions:pool' %}">Submissions Pool</a>.</p>
+      <p>{{ errormessage }}</p>
+      <p>Return to the <a href="{% url 'submissions:pool' %}">Submissions Pool</a>.</p>
 
   {% elif assignment.accepted %}
-  <h1>Thank you for becoming Editor-in-charge of this submission.</h1>
-  <p>Please go to the <a href="{% url 'submissions:editorial_page' arxiv_identifier_w_vn_nr=assignment.submission.arxiv_identifier_w_vn_nr %}">Submission's editorial page</a> and select referees now.</p>
+      <h1>Thank you for becoming Editor-in-charge of this submission.</h1>
+      <p>Please go to the <a href="{% url 'submissions:editorial_page' arxiv_identifier_w_vn_nr=assignment.submission.arxiv_identifier_w_vn_nr %}">Submission's editorial page</a> and select referees now.</p>
   {% else %}
-  <h1>Thank you for considering.</h1>
-  <p>Return to the <a href="{% url 'submissions:pool' %}">Submissions Pool</a>.</p>
+      <h1>Thank you for considering.</h1>
+      <p>Return to the <a href="{% url 'submissions:pool' %}">Submissions Pool</a>.</p>
   {% endif %}
-</section>
 
-{% endblock bodysup %}
+{% endblock content %}
diff --git a/submissions/templates/submissions/accept_or_decline_ref_invitation_ack.html b/submissions/templates/submissions/accept_or_decline_ref_invitation_ack.html
index aafb2c0c2..3e47b51a0 100644
--- a/submissions/templates/submissions/accept_or_decline_ref_invitation_ack.html
+++ b/submissions/templates/submissions/accept_or_decline_ref_invitation_ack.html
@@ -2,16 +2,14 @@
 
 {% block pagetitle %}: accept or decline refereeing invitation (ack){% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
 
-<section>
-  {% if invitation.accepted == True %}
-  <h2>Thank you for agreeing to referee this Submission.</h2>
-  <p>When you are ready, please go to the <a href="{% url 'submissions:submission' arxiv_identifier_w_vn_nr=invitation.submission.arxiv_identifier_w_vn_nr %}">Submission's page</a> to submit your Report.</p>
-  {% else %}
-  <h1>You have declined to contribute a Report.</h1>
-  <p>Nonetheless, we thank you very much for considering this refereeing invitation.</p>
-  {% endif %}
-</section>
+{% if invitation.accepted == True %}
+    <h2>Thank you for agreeing to referee this Submission.</h2>
+    <p>When you are ready, please go to the <a href="{% url 'submissions:submission' arxiv_identifier_w_vn_nr=invitation.submission.arxiv_identifier_w_vn_nr %}">Submission's page</a> to submit your Report.</p>
+{% else %}
+    <h1>You have declined to contribute a Report.</h1>
+    <p>Nonetheless, we thank you very much for considering this refereeing invitation.</p>
+{% endif %}
 
-{% endblock bodysup %}
+{% endblock content %}
diff --git a/submissions/templates/submissions/assignment_failed.html b/submissions/templates/submissions/assignment_failed.html
index 0264daab9..cd2931bea 100644
--- a/submissions/templates/submissions/assignment_failed.html
+++ b/submissions/templates/submissions/assignment_failed.html
@@ -1,18 +1,18 @@
 {% extends 'scipost/base.html' %}
 
+{% load bootstrap %}
+
 {% block pagetitle %}: assignment failed (ack){% endblock pagetitle %}
 
-{% block bodysup %}
+{% block content %}
 
-<section>
-  <h1>Assignment has failed for Submission</h1>
-  <p>{{ submission.title }} by {{ submission.author_list }}.</p>
-  <p>Please add comments on the Submission in this box.</p>
-  <form action="{% url 'submissions:assignment_failed' arxiv_identifier_w_vn_nr=submission.arxiv_identifier_w_vn_nr %}" method="POST">
+<h1>Assignment has failed for Submission</h1>
+<p>{{ submission.title }} by {{ submission.author_list }}.</p>
+<p>Please add comments on the Submission in this box.</p>
+<form action="{% url 'submissions:assignment_failed' arxiv_identifier_w_vn_nr=submission.arxiv_identifier_w_vn_nr %}" method="POST">
     {% csrf_token %}
-    {{ form }}
-    <input type="submit" name="Submit" />
-  </form>
-</section>
+    {{ form|bootstrap }}
+    <input type="submit" name="Submit" class="btn btn-primary" />
+</form>
 
-{% endblock bodysup %}
+{% endblock content %}
diff --git a/submissions/templates/submissions/submit_manuscript.html b/submissions/templates/submissions/submit_manuscript.html
deleted file mode 100644
index 55a6f49aa..000000000
--- a/submissions/templates/submissions/submit_manuscript.html
+++ /dev/null
@@ -1,105 +0,0 @@
-{% extends 'scipost/base.html' %}
-
-{% block pagetitle %}: submit manuscript{% endblock pagetitle %}
-
-{% block bodysup %}
-
-
-<script>
-$(document).ready(function(){
-  $("#id_submission_type").closest('tr').hide()
-
-  $('select#id_submitted_to_journal').on('change', function (){
-  var selection = $(this).val();
-  switch(selection){
-    case "SciPost Physics":
-      $("#id_submission_type").closest('tr').show()
-      break;
-    default:
-      $("#id_submission_type").closest('tr').hide()
-  }
-});
-
-  var isresub = $("#id_is_resubmission").val();
-  switch(isresub){
-    case "True":
-      $("#id_author_comments").closest('tr').show()
-      $("#id_list_of_changes").closest('tr').show()
-      break;
-    default:
-      $("#id_author_comments").closest('tr').hide()
-      $("#id_list_of_changes").closest('tr').hide()
-  }
-
-});
-</script>
-
-<section>
-  <div class="flex-greybox">
-    <h1>Submit a manuscript to SciPost</h1>
-  </div>
-
-  <p>Before submitting, make sure you agree with the
-    <a href="{% url 'journals:journals_terms_and_conditions' %}">
-      SciPost Journals Terms and Conditions</a>.</p>
-  <p>You should also make sure you understand the
-    <a href="{% url 'submissions:sub_and_ref_procedure' %}#pwr">
-      refereeing procedure</a> and its open aspect.</p>
-  <p>In particular, make sure you are familiar with the
-    <a href="{% url 'journals:journals_terms_and_conditions' %}#license_and_copyright_agreement">
-      license and copyright agreement</a>
-    and the <a href="{% url 'journals:journals_terms_and_conditions' %}#author_obligations">
-      author obligations</a>.</p>
-  <p>Please prepare your manuscript according to the
-    <a href="{% url 'submissions:author_guidelines' %}">author guidelines</a>.</p>
-
-
-  {% if perms.scipost.can_submit_manuscript %}
-
-  <div class="flex-greybox">
-    <h3><em>Please provide the arXiv identifier for your Submission:</em></h3>
-    <p>
-      <em>(give the identifier without prefix but with version number, as per the placeholder)</em>
-    </p>
-    <form action="{% url 'submissions:prefill_using_identifier' %}" method="post">
-      {% csrf_token %}
-      {{ identifierform }}
-      <input type="submit" value="Query arXiv"/>
-    </form>
-  </div>
-  <br/>
-  <!-- {% if errormessage %}
-  <h3 style="color: red;">Error: {{ errormessage }}</h3>
-  {% endif %} -->
-
-  {% if resubmessage %}
-  <h3 style="color: green;">{{ resubmessage }}</h3>
-  {% endif %}
-
-  {% if form.arxiv_link.value %}
-  <form id="full_submission_form" action="{% url 'submissions:submit_manuscript' %}" method="post">
-    {% csrf_token %}
-    <table>
-      <ul>
-	{{ form.as_table }}
-      </ul>
-    </table>
-    <p>By clicking on Submit, you state that you have read and agree with
-      the <a href="{% url 'journals:journals_terms_and_conditions' %}">
-	SciPost Journals Terms and Conditions</a>, the
-      <a href="{% url 'journals:journals_terms_and_conditions' %}#license_and_copyright_agreement">
-	license and copyright agreement</a>
-      and the <a href="{% url 'journals:journals_terms_and_conditions' %}#author_obligations">
-	author obligations</a>.</p>
-    <input type="submit" value="Submit"/>
-  </form>
-  {% endif %}
-
-  {% else %}
-  <h3>You are currently not allowed to submit a manuscript.</h3>
-  {% endif %}
-
-</section>
-
-
-{% endblock bodysup %}
diff --git a/theses/templates/theses/vet_thesislink_requests.html b/theses/templates/theses/vet_thesislink_requests.html
deleted file mode 100644
index e0a7cef66..000000000
--- a/theses/templates/theses/vet_thesislink_requests.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends 'scipost/base.html' %}
-
-{% block pagetitle %}: vet Thesis Link requests{% endblock pagetitle %}
-
-{% block bodysup %}
-
-<section>
-  {% if not thesislink_to_vet %}
-  <h1>There are no Thesis Link requests for you to vet.</h1>
-
-  {% else %}
-
-  <h1>SciPost Thesis Link request to vet:</h1>
-
-  <br>
-  <hr>
-  <div class="row">
-    <div class="col-8">
-      {% include "./_thesislink_information.html" with thesislink=thesislink_to_vet %}
-    </div>
-    <div class="col-4">
-      <form action= {% url 'theses:vet_thesislink_request' thesislink_to_vet.id %} method="post">
-        {% csrf_token %}
-        {{ form.as_ul }}
-        <input type="submit" value="Submit" />
-    </div>
-  </div>
-
-  {% endif %}
-</section>
-
-{% endblock bodysup %}
-- 
GitLab