From e5b2931ad14c273c27a9ee7f30ccdd26f249e249 Mon Sep 17 00:00:00 2001
From: "J.-S. Caux" <J.S.Caux@uva.nl>
Date: Mon, 15 Apr 2019 09:08:49 +0200
Subject: [PATCH] Template style: app proceedings

---
 petitions/templates/petitions/petition.html   |  58 +++---
 .../partials/proceedings/description.html     |  28 +--
 .../partials/proceedings/proceedings_li.html  |   4 +-
 .../partials/proceedings/summary.html         |  72 +++----
 .../templates/proceedings/proceedings.html    |  78 +++----
 .../proceedings/proceedings_add.html          |  18 +-
 .../proceedings/proceedings_details.html      | 190 +++++++++---------
 .../proceedings/proceedings_edit.html         |  18 +-
 .../proceedings/proceedings_toc.html          |   6 +-
 9 files changed, 236 insertions(+), 236 deletions(-)

diff --git a/petitions/templates/petitions/petition.html b/petitions/templates/petitions/petition.html
index f04d85ff3..09dd1ad23 100644
--- a/petitions/templates/petitions/petition.html
+++ b/petitions/templates/petitions/petition.html
@@ -6,48 +6,48 @@
 
 {% block content %}
 
-<div class="row">
-  <div class="col-12">
-    <h1 class="highlight">{{ petition.headline }}</h1>
-    {% if petition.preamble %}
-    <h3>Preamble:</h3>
-    <p>{{ petition.preamble|safe|escape|linebreaksbr }}</p>
-    {% endif %}
-    <h3>Petition statement:</h3>
-    <p>{{ petition.statement|safe|escape|linebreaksbr }}</p>
+  <div class="row">
+    <div class="col-12">
+      <h1 class="highlight">{{ petition.headline }}</h1>
+      {% if petition.preamble %}
+	<h3>Preamble:</h3>
+	<p>{{ petition.preamble|safe|escape|linebreaksbr }}</p>
+      {% endif %}
+      <h3>Petition statement:</h3>
+      <p>{{ petition.statement|safe|escape|linebreaksbr }}</p>
       {% if not is_signed %}
-      <h3>Please consider signing this petition</h3>
-      <form action="{{ petition.get_absolute_url }}" method="post">
-        {% csrf_token %}
-        {{ form|bootstrap:'3,9' }}
-        <input class="btn btn-primary" type="submit" value="Sign this petition" />
-      </form>
+	<h3>Please consider signing this petition</h3>
+	<form action="{{ petition.get_absolute_url }}" method="post">
+          {% csrf_token %}
+          {{ form|bootstrap:'3,9' }}
+          <input class="btn btn-primary" type="submit" value="Sign this petition" />
+	</form>
       {% else %}
-      <h3>Thank you for signing this petition!</h3>
-      <p>Please invite your colleagues to also sign.</p>
+	<h3>Thank you for signing this petition!</h3>
+	<p>Please invite your colleagues to also sign.</p>
       {% endif %}
 
     </div>
-</div>
+  </div>
 
-<div class="row">
-  <div class="col-12">
+  <div class="row">
+    <div class="col-12">
       <h2>Signatories</h2>
       <table class="table">
     	{% for signatory in petition.petition_signatories.verified %}
-        	<tr>
-        	  <td>{{ signatory.last_name }}</td>
-        	  <td>{{ signatory.get_title_display }}</td>
-		  <td>{{ signatory.first_name }}</td>
-        	  <td>{{ signatory.affiliation }}</td>
-        	  <td>{{ signatory.get_country_of_employment_display }}</td>
-        	</tr>
+          <tr>
+            <td>{{ signatory.last_name }}</td>
+            <td>{{ signatory.get_title_display }}</td>
+	    <td>{{ signatory.first_name }}</td>
+            <td>{{ signatory.affiliation }}</td>
+            <td>{{ signatory.get_country_of_employment_display }}</td>
+          </tr>
     	{% empty %}
-        	<tr><td>No signatories found</td></tr>
+          <tr><td>No signatories found</td></tr>
     	{% endfor %}
       </table>
+    </div>
   </div>
-</div>
 
 
 {% endblock content %}
diff --git a/proceedings/templates/partials/proceedings/description.html b/proceedings/templates/partials/proceedings/description.html
index a28c66442..a247d7540 100644
--- a/proceedings/templates/partials/proceedings/description.html
+++ b/proceedings/templates/partials/proceedings/description.html
@@ -1,21 +1,21 @@
 <h3>{{ proceedings.event_name }} {% if proceedings.event_suffix %}({{ proceedings.event_suffix }}){% endif %}</h3>
 <div class="mb-4">
-    This event was held from {{ proceedings.event_start_date }} to {{ proceedings.event_end_date }}.
-    <div class="my-1">
-        <strong>Submission deadline: {{ proceedings.submissions_deadline }}</strong>.
-    </div>
-    {% if proceedings.open_for_submission %}
-        <a href="{% url 'submissions:submit_manuscript' %}">Submit your manuscript here</a>.
-        Prepare your manuscript according to <a href="{% url 'submissions:author_guidelines' %}">our guidelines</a>, using <a href>our LaTeX template</a>.
-    {% endif %}
+  This event was held from {{ proceedings.event_start_date }} to {{ proceedings.event_end_date }}.
+  <div class="my-1">
+    <strong>Submission deadline: {{ proceedings.submissions_deadline }}</strong>.
+  </div>
+  {% if proceedings.open_for_submission %}
+    <a href="{% url 'submissions:submit_manuscript' %}">Submit your manuscript here</a>.
+    Prepare your manuscript according to <a href="{% url 'submissions:author_guidelines' %}">our guidelines</a>, using <a href>our LaTeX template</a>.
+  {% endif %}
 </div>
 <p>{{ proceedings.event_description|safe|linebreaksbr }}</p>
 
 {% if proceedings.fellowships.guests.exists %}
-    <h3>Guest Fellows responsible for this Issue</h3>
-    <ul>
-        {% for fellow in proceedings.fellowships.guests %}
-            <li>{{ fellow.contributor.get_title_display }} {{ fellow.contributor.user.first_name }} {{ fellow.contributor.user.last_name }}{% if fellow.contributor.affiliation.name %}, {{ fellow.contributor.affiliation.name }}{% endif %}</li>
-        {% endfor %}
-    </ul>
+  <h3>Guest Fellows responsible for this Issue</h3>
+  <ul>
+    {% for fellow in proceedings.fellowships.guests %}
+      <li>{{ fellow.contributor.get_title_display }} {{ fellow.contributor.user.first_name }} {{ fellow.contributor.user.last_name }}{% if fellow.contributor.affiliation.name %}, {{ fellow.contributor.affiliation.name }}{% endif %}</li>
+    {% endfor %}
+  </ul>
 {% endif %}
diff --git a/proceedings/templates/partials/proceedings/proceedings_li.html b/proceedings/templates/partials/proceedings/proceedings_li.html
index 7782f745c..29248fd46 100644
--- a/proceedings/templates/partials/proceedings/proceedings_li.html
+++ b/proceedings/templates/partials/proceedings/proceedings_li.html
@@ -1,4 +1,4 @@
 <div class="pl-4 mb-1">
-    {{ proceedings.event_name }} {% if proceedings.event_suffix %}({{ proceedings.event_suffix }}){% endif %}<br>
-    Submission deadline: {{ proceedings.submissions_deadline }}
+  {{ proceedings.event_name }} {% if proceedings.event_suffix %}({{ proceedings.event_suffix }}){% endif %}<br>
+  Submission deadline: {{ proceedings.submissions_deadline }}
 </div>
diff --git a/proceedings/templates/partials/proceedings/summary.html b/proceedings/templates/partials/proceedings/summary.html
index 56a2c6ea9..fff1104f3 100644
--- a/proceedings/templates/partials/proceedings/summary.html
+++ b/proceedings/templates/partials/proceedings/summary.html
@@ -1,42 +1,42 @@
 <table class="proceedings summary table table-borderless">
+  <tr>
+    <th style="min-width: 200px;">Event name</th>
+    <td>{{ proceedings.event_name }}</td>
+  </tr>
+  <tr>
+    <th>Description</th>
+    <td>{{ proceedings.event_description|safe|default:'-'|linebreaksbr }}</td>
+  </tr>
+  {% if proceedings.event_start_date %}
     <tr>
-        <th style="min-width: 200px;">Event name</th>
-        <td>{{ proceedings.event_name }}</td>
+      <th>Event start date</th>
+      <td>{{ proceedings.event_start_date }}</td>
     </tr>
+  {% endif %}
+  {% if proceedings.event_end_date %}
     <tr>
-        <th>Description</th>
-        <td>{{ proceedings.event_description|safe|default:'-'|linebreaksbr }}</td>
-    </tr>
-    {% if proceedings.event_start_date %}
-        <tr>
-            <th>Event start date</th>
-            <td>{{ proceedings.event_start_date }}</td>
-        </tr>
-    {% endif %}
-    {% if proceedings.event_end_date %}
-        <tr>
-            <th>Event end date</th>
-            <td>{{ proceedings.event_end_date }}</td>
-        </tr>
-    {% endif %}
-    <tr>
-        <th>Guest Fellowships</th>
-        <td>{{ proceedings.fellowships.count }}</td>
-    </tr>
-    <tr>
-        <th>Lead Fellowship</th>
-        <td>{{ proceedings.lead_fellow }}</td>
-    </tr>
-    <tr>
-        <th>Submission Open</th>
-        <td>{{ proceedings.submissions_open }}</td>
-    </tr>
-    <tr>
-        <th>Submission Deadline</th>
-        <td>{{ proceedings.submissions_deadline }}</td>
-    </tr>
-    <tr>
-        <th>Submission Close</th>
-        <td>{{ proceedings.submissions_close }}</td>
+      <th>Event end date</th>
+      <td>{{ proceedings.event_end_date }}</td>
     </tr>
+  {% endif %}
+  <tr>
+    <th>Guest Fellowships</th>
+    <td>{{ proceedings.fellowships.count }}</td>
+  </tr>
+  <tr>
+    <th>Lead Fellowship</th>
+    <td>{{ proceedings.lead_fellow }}</td>
+  </tr>
+  <tr>
+    <th>Submission Open</th>
+    <td>{{ proceedings.submissions_open }}</td>
+  </tr>
+  <tr>
+    <th>Submission Deadline</th>
+    <td>{{ proceedings.submissions_deadline }}</td>
+  </tr>
+  <tr>
+    <th>Submission Close</th>
+    <td>{{ proceedings.submissions_close }}</td>
+  </tr>
 </table>
diff --git a/proceedings/templates/proceedings/proceedings.html b/proceedings/templates/proceedings/proceedings.html
index 2cd2bb44e..29f010b57 100644
--- a/proceedings/templates/proceedings/proceedings.html
+++ b/proceedings/templates/proceedings/proceedings.html
@@ -1,49 +1,49 @@
 {% extends 'submissions/admin/base.html' %}
 
 {% block breadcrumb_items %}
-    {{ block.super }}
-    <span class="breadcrumb-item">Proceedings</span>
+  {{ block.super }}
+  <span class="breadcrumb-item">Proceedings</span>
 {% endblock %}
 
 {% block pagetitle %}: Manage Proceedings{% endblock pagetitle %}
 
 {% block content %}
-    <h1>Manage Proceedings</h1>
-    <ul>
-      <li><a href="{% url 'journals:admin_volumes_list' %}">Manage Volumes</a></li>
-      <li><a href="{% url 'journals:admin_issue_list' %}">Manage Issues</a></li>
-      <li><a href="{% url 'proceedings:proceedings' %}" class="active">Manage Proceedings Issues</a></li>
-      <li><a href="{% url 'journals:manage_metadata' %}">Manage Publications metadata</a></li>
-      <li><a href="{% url 'journals:manage_report_metadata' %}">Manage Report metadata</a></li>
-    </ul>
-    <a href="{% url 'proceedings:proceedings_add' %}">Add new Proceedings</a>
+  <h1>Manage Proceedings</h1>
+  <ul>
+    <li><a href="{% url 'journals:admin_volumes_list' %}">Manage Volumes</a></li>
+    <li><a href="{% url 'journals:admin_issue_list' %}">Manage Issues</a></li>
+    <li><a href="{% url 'proceedings:proceedings' %}" class="active">Manage Proceedings Issues</a></li>
+    <li><a href="{% url 'journals:manage_metadata' %}">Manage Publications metadata</a></li>
+    <li><a href="{% url 'journals:manage_report_metadata' %}">Manage Report metadata</a></li>
+  </ul>
+  <a href="{% url 'proceedings:proceedings_add' %}">Add new Proceedings</a>
 
-    <table class="table mt-3">
-        <thead>
-            <tr>
-                <th>Event name</th>
-                <th>Submission Deadline</th>
-                <th>Guest Fellowships</th>
-                <th>Submissions</th>
-                <th></th>
-            </tr>
-        </thead>
-        <tbody>
-            {% for proc in proceedings %}
-                <tr>
-                    <td>{{ proc.event_name }}</td>
-                    <td>{{ proc.submissions_deadline }}</td>
-                    <td>{{ proc.fellowships.count }}</td>
-                    <td>{{ proc.submissions.count }}</td>
-                    <td>
-                        <a href="{% url 'proceedings:proceedings_details' proc.id %}">View Proceedings details</a>
-                    </td>
-                </tr>
-            {% empty %}
-                <tr>
-                    <td class="text-danger py-2" colspan="5">There are no Proceedings!</td>
-                </tr>
-            {% endfor %}
-        </tbody>
-    </table>
+  <table class="table mt-3">
+    <thead>
+      <tr>
+        <th>Event name</th>
+        <th>Submission Deadline</th>
+        <th>Guest Fellowships</th>
+        <th>Submissions</th>
+        <th></th>
+      </tr>
+    </thead>
+    <tbody>
+      {% for proc in proceedings %}
+        <tr>
+          <td>{{ proc.event_name }}</td>
+          <td>{{ proc.submissions_deadline }}</td>
+          <td>{{ proc.fellowships.count }}</td>
+          <td>{{ proc.submissions.count }}</td>
+          <td>
+            <a href="{% url 'proceedings:proceedings_details' proc.id %}">View Proceedings details</a>
+          </td>
+        </tr>
+      {% empty %}
+        <tr>
+          <td class="text-danger py-2" colspan="5">There are no Proceedings!</td>
+        </tr>
+      {% endfor %}
+    </tbody>
+  </table>
 {% endblock %}
diff --git a/proceedings/templates/proceedings/proceedings_add.html b/proceedings/templates/proceedings/proceedings_add.html
index 5a5d195de..24cf2e6c3 100644
--- a/proceedings/templates/proceedings/proceedings_add.html
+++ b/proceedings/templates/proceedings/proceedings_add.html
@@ -3,20 +3,20 @@
 {% load bootstrap %}
 
 {% block breadcrumb_items %}
-    {{ block.super }}
-    <a href="{% url 'proceedings:proceedings' %}" class="breadcrumb-item">Proceedings</a>
-    <span class="breadcrumb-item">Add new</span>
+  {{ block.super }}
+  <a href="{% url 'proceedings:proceedings' %}" class="breadcrumb-item">Proceedings</a>
+  <span class="breadcrumb-item">Add new</span>
 {% endblock %}
 
 {% block pagetitle %}: Add new Proceedings{% endblock pagetitle %}
 
 {% block content %}
-    <h1>Add new Proceedings</h1>
+  <h1>Add new Proceedings</h1>
 
-    <form method="post">
-        {% csrf_token %}
-        {{ form|bootstrap }}
-        <button type="submit" class="btn btn-primary">Add Proceedings</button>
-    </form>
+  <form method="post">
+    {% csrf_token %}
+    {{ form|bootstrap }}
+    <button type="submit" class="btn btn-primary">Add Proceedings</button>
+  </form>
 
 {% endblock %}
diff --git a/proceedings/templates/proceedings/proceedings_details.html b/proceedings/templates/proceedings/proceedings_details.html
index 323999529..06487e1b2 100644
--- a/proceedings/templates/proceedings/proceedings_details.html
+++ b/proceedings/templates/proceedings/proceedings_details.html
@@ -1,109 +1,109 @@
 {% extends 'submissions/admin/base.html' %}
 
 {% block breadcrumb_items %}
-    {{ block.super }}
-    <a href="{% url 'proceedings:proceedings' %}" class="breadcrumb-item">Proceedings</a>
-    <span class="breadcrumb-item">Proceedings details</span>
+  {{ block.super }}
+  <a href="{% url 'proceedings:proceedings' %}" class="breadcrumb-item">Proceedings</a>
+  <span class="breadcrumb-item">Proceedings details</span>
 {% endblock %}
 
 {% block pagetitle %}: Proceedings details{% endblock pagetitle %}
 
 {% block content %}
-    <h1>Proceedings details</h1>
-    <h2 class="text-primary">{{ proceedings }}</h2>
-    <a href="{% url 'proceedings:proceedings_edit' proceedings.id %}" class="breadcrumb-item">Edit Proceedings</a>
-    <br>
-
-    {% include 'partials/proceedings/summary.html' with proceedings=proceedings %}
-
-    {% comment %}
-    <form method="post" action="{% url 'colleges:fellowship_terminate' fellowship.id %}" class="d-inline">
-      {% csrf_token %}
-      <button type="submit" class="btn btn-danger">Terminate Fellowship</button>
-    </form>
-    <a href="{% url 'colleges:fellowship_edit' fellowship.id %}" class="btn btn-info ml-2">Edit Fellowship</a>
-    {% endcomment %}
-
-    <h3>Table of contents</h3>
-    <p>
-      View the table of contents in <a href="javascript:;" data-toggle="modal" data-target="#textocmodal">TeX format</a>
-    </p>
-
-
-    <h3 class="mt-3">All Guest Fellowships of this Proceedings</h3>
-
-    <table class="table">
-        <thead>
-            <tr>
-                <th>Fellowship ID</th>
-                <th>Fellow</th>
-                <th>Type</th>
-                <th colspan="2">Date range</th>
-            </tr>
-        </thead>
-        <tbody>
-            {% for fellowship in proceedings.fellowships.all %}
-                <tr>
-                    <td>{{ fellowship.id }}</td>
-                    <td>{{ fellowship.contributor }}</td>
-                    <td>{{ fellowship.guest|yesno:"Guest fellowship,Regular fellowship"|safe }}</td>
-                    <td>
-                        {% if fellowship.start_date %}
-                            from {{ fellowship.start_date }}
-                        {% endif %}
-                        {% if fellowship.until_date %}
-                            until {{ fellowship.until_date }}
-                        {% endif %}
-                        {% if not fellowship.start_date and not fellowship.until_date %}
-                            <i>Unlimited</i>
-                        {% endif %}
-                    </td>
-                    <td><a href="{{ fellowship.get_absolute_url }}">See details</a></td>
-                </tr>
-            {% endfor %}
-        </tbody>
-    </table>
-
-    <h3>All Submissions for this Proceedings Issue</h3>
-
-    <table class="table table-hover">
-        <thead>
-            <tr>
-                <th>Submission</th>
-                <th>Author List</th>
-                <th colspan="2">Status</th>
-            </tr>
-        </thead>
-        <tbody>
-            {% for submission in proceedings.submissions.all %}
-                <tr>
-                    <td>
-                        <a href="{{ submission.get_absolute_url }}">{{ submission.preprint.identifier_w_vn_nr }}, {{ submission.title|truncatechars:50 }}</a>
-                    </td>
-                    <td>{{ submission.author_list }}</td>
-                    <td>{{ submission.get_status_display }}</td>
-                    <td><a href="{% url 'submissions:editorial_page' submission.preprint.identifier_w_vn_nr %}">Editorial Page</a></td>
-                </tr>
-            {% endfor %}
-        </tbody>
-    </table>
-
-
-
-<div class="modal" id="textocmodal" tabindex="-1" role="dialog" aria-hidden="true" aria-labelledby="textocmodal">
+  <h1>Proceedings details</h1>
+  <h2 class="text-primary">{{ proceedings }}</h2>
+  <a href="{% url 'proceedings:proceedings_edit' proceedings.id %}" class="breadcrumb-item">Edit Proceedings</a>
+  <br>
+
+  {% include 'partials/proceedings/summary.html' with proceedings=proceedings %}
+
+  {% comment %}
+  <form method="post" action="{% url 'colleges:fellowship_terminate' fellowship.id %}" class="d-inline">
+  {% csrf_token %}
+  <button type="submit" class="btn btn-danger">Terminate Fellowship</button>
+  </form>
+  <a href="{% url 'colleges:fellowship_edit' fellowship.id %}" class="btn btn-info ml-2">Edit Fellowship</a>
+  {% endcomment %}
+
+  <h3>Table of contents</h3>
+  <p>
+    View the table of contents in <a href="javascript:;" data-toggle="modal" data-target="#textocmodal">TeX format</a>
+  </p>
+
+
+  <h3 class="mt-3">All Guest Fellowships of this Proceedings</h3>
+
+  <table class="table">
+    <thead>
+      <tr>
+        <th>Fellowship ID</th>
+        <th>Fellow</th>
+        <th>Type</th>
+        <th colspan="2">Date range</th>
+      </tr>
+    </thead>
+    <tbody>
+      {% for fellowship in proceedings.fellowships.all %}
+        <tr>
+          <td>{{ fellowship.id }}</td>
+          <td>{{ fellowship.contributor }}</td>
+          <td>{{ fellowship.guest|yesno:"Guest fellowship,Regular fellowship"|safe }}</td>
+          <td>
+            {% if fellowship.start_date %}
+              from {{ fellowship.start_date }}
+            {% endif %}
+            {% if fellowship.until_date %}
+              until {{ fellowship.until_date }}
+            {% endif %}
+            {% if not fellowship.start_date and not fellowship.until_date %}
+              <i>Unlimited</i>
+            {% endif %}
+          </td>
+          <td><a href="{{ fellowship.get_absolute_url }}">See details</a></td>
+        </tr>
+      {% endfor %}
+    </tbody>
+  </table>
+
+  <h3>All Submissions for this Proceedings Issue</h3>
+
+  <table class="table table-hover">
+    <thead>
+      <tr>
+        <th>Submission</th>
+        <th>Author List</th>
+        <th colspan="2">Status</th>
+      </tr>
+    </thead>
+    <tbody>
+      {% for submission in proceedings.submissions.all %}
+        <tr>
+          <td>
+            <a href="{{ submission.get_absolute_url }}">{{ submission.preprint.identifier_w_vn_nr }}, {{ submission.title|truncatechars:50 }}</a>
+          </td>
+          <td>{{ submission.author_list }}</td>
+          <td>{{ submission.get_status_display }}</td>
+          <td><a href="{% url 'submissions:editorial_page' submission.preprint.identifier_w_vn_nr %}">Editorial Page</a></td>
+        </tr>
+      {% endfor %}
+    </tbody>
+  </table>
+
+
+
+  <div class="modal" id="textocmodal" tabindex="-1" role="dialog" aria-hidden="true" aria-labelledby="textocmodal">
     <div class="modal-dialog modal-lg" role="document">
-        <div class="modal-content">
-            <div class="modal-body">
-                <div class="pb-4">
-                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
-                        <span aria-hidden="true">&times;</span>
-                    </button>
-                </div>
-                <div>{% include 'proceedings/proceedings_toc.html' with proceedings=proceedings %}</div>
-            </div>
+      <div class="modal-content">
+        <div class="modal-body">
+          <div class="pb-4">
+            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+              <span aria-hidden="true">&times;</span>
+            </button>
+          </div>
+          <div>{% include 'proceedings/proceedings_toc.html' with proceedings=proceedings %}</div>
         </div>
+      </div>
     </div>
-</div>
+  </div>
 
 
 
diff --git a/proceedings/templates/proceedings/proceedings_edit.html b/proceedings/templates/proceedings/proceedings_edit.html
index c4245ec1d..407668596 100644
--- a/proceedings/templates/proceedings/proceedings_edit.html
+++ b/proceedings/templates/proceedings/proceedings_edit.html
@@ -3,20 +3,20 @@
 {% load bootstrap %}
 
 {% block breadcrumb_items %}
-    {{ block.super }}
-    <a href="{% url 'proceedings:proceedings' %}" class="breadcrumb-item">Proceedings</a>
-    <span class="breadcrumb-item">Edit {{ proceedings.event_name }}</span>
+  {{ block.super }}
+  <a href="{% url 'proceedings:proceedings' %}" class="breadcrumb-item">Proceedings</a>
+  <span class="breadcrumb-item">Edit {{ proceedings.event_name }}</span>
 {% endblock %}
 
 {% block pagetitle %}: Edit Proceedings{% endblock pagetitle %}
 
 {% block content %}
-    <h1>Edit Proceedings</h1>
+  <h1>Edit Proceedings</h1>
 
-    <form method="post">
-        {% csrf_token %}
-        {{ form|bootstrap }}
-        <button type="submit" class="btn btn-primary">Save Proceedings</button>
-    </form>
+  <form method="post">
+    {% csrf_token %}
+    {{ form|bootstrap }}
+    <button type="submit" class="btn btn-primary">Save Proceedings</button>
+  </form>
 
 {% endblock %}
diff --git a/proceedings/templates/proceedings/proceedings_toc.html b/proceedings/templates/proceedings/proceedings_toc.html
index 549ac5585..9cb8ee477 100644
--- a/proceedings/templates/proceedings/proceedings_toc.html
+++ b/proceedings/templates/proceedings/proceedings_toc.html
@@ -1,8 +1,8 @@
 <pre>
 \begin{tabular}{l r}
-{% for pub in proceedings.issue.publications.all|dictsort:"paper_nr" %}
-{{ pub.title }} & {{ pub.paper_nr }} \\
+  {% for pub in proceedings.issue.publications.all|dictsort:"paper_nr" %}
+    {{ pub.title }} & {{ pub.paper_nr }} \\
 \textit{by {{ pub.author_list }} } \\ \\
-{% endfor %}
+  {% endfor %}
 \end{tabular}
 </pre>
-- 
GitLab