diff --git a/finances/models.py b/finances/models.py
index ecfa0ffca08410d9d28010a4ab6d95c2b58c926e..f7755ead7f9b6847b1d0850c04e09b4350f2c177 100644
--- a/finances/models.py
+++ b/finances/models.py
@@ -42,6 +42,7 @@ class Subsidy(models.Model):
 
     class Meta:
         verbose_name_plural = 'subsidies'
+        ordering = ['-date']
 
     def __str__(self):
         return format_html('{}: €{} from {}, for {}',
diff --git a/finances/templates/finances/finances.html b/finances/templates/finances/finances.html
index 1a6698429d4c84ffe5c018ce71810009b4b510fb..18a77af442bfe1c153133faf500380a3b8cc5789 100644
--- a/finances/templates/finances/finances.html
+++ b/finances/templates/finances/finances.html
@@ -1,5 +1,6 @@
 {% extends 'finances/base.html' %}
 
+{% load staticfiles %}
 {% load bootstrap %}
 
 {% block breadcrumb_items %}
@@ -12,13 +13,27 @@
 {% block content %}
 <div class="row">
   <div class="col-12">
-    <h3 class="highlight">Finances</h3>
+    <h2>Finances</h2>
+    <h3 class="highlight">Subsidies</h3>
     <ul>
       <li><a href="{% url 'finances:subsidies' %}">View {% if perms.scipost.can_manage_subsidies %}(and manage) {% endif %}info on Subsidies obtained by SciPost</a></li>
-      {% if perms.scipost.can_view_timesheets %}
+    </ul>
+
+    <h3 class="highlight" id="reports">Financial Reports</h3>
+    <ul>
+      <li><a href="{% static 'scipost/info/AnnualReports/AnnualReport_2015.pdf' %}">Annual Report 2015</a></li>
+      <li><a href="{% static 'scipost/info/AnnualReports/AnnualReport_2016.pdf' %}">Annual Report 2016</a></li>
+      <li><a href="{% static 'scipost/info/AnnualReports/AnnualReport_2017.pdf' %}">Annual Report 2017</a></li>
+    </ul>
+
+    {% if perms.scipost.can_view_timesheets %}
+    <h3 class="highlight">Timesheets</h3>
+    <ul>
       <li><a href="{% url 'finances:timesheets' %}">Manage Timesheets</a></li>
-      {% endif %}
     </ul>
+    {% endif %}
+
   </div>
 </div>
+
 {% endblock content %}
diff --git a/finances/templates/finances/subsidy_list.html b/finances/templates/finances/subsidy_list.html
index 286716e4bc34b3b26142c166c5efe4c8f2b10cae..555f2491e7879c1445de4550d7d84f57bb7dae6e 100644
--- a/finances/templates/finances/subsidy_list.html
+++ b/finances/templates/finances/subsidy_list.html
@@ -42,8 +42,30 @@ $(document).ready(function($) {
 	<tr>
 	  <th>From Organization</th>
 	  <th>Type</th>
-	  <th>Amount</th>
-	  <th>Date</th>
+	  <th>Amount
+	    {% if request.GET.ordering != 'asc' %}
+	    <a href="?order_by=amount&ordering=asc"><i class="fa fa-sort-asc"></i></a>
+	    {% else %}
+	    <a href="{% url 'finances:subsidies' %}"><i class="fa fa-sort-asc"></i></a>
+	    {% endif %}
+	    {% if request.GET.ordering != 'desc' %}
+	    <a href="?order_by=amount&ordering=desc"><i class="fa fa-sort-desc"></i></a>
+	    {% else %}
+	    <a href="{% url 'finances:subsidies' %}"><i class="fa fa-sort-desc"></i></a>
+	    {% endif %}
+	  </th>
+	  <th>Date
+	    {% if request.GET.ordering != 'asc' %}
+	    <a href="?order_by=date&ordering=asc"><i class="fa fa-sort-asc"></i></a>
+	    {% else %}
+	    <a href="{% url 'finances:subsidies' %}"><i class="fa fa-sort-asc"></i></a>
+	    {% endif %}
+	    {% if request.GET.ordering != 'desc' %}
+	    <a href="?order_by=date&ordering=desc"><i class="fa fa-sort-desc"></i></a>
+	    {% else %}
+	    <a href="{% url 'finances:subsidies' %}"><i class="fa fa-sort-desc"></i></a>
+	    {% endif %}
+	  </th>
 	</tr>
       </thead>
       <tbody>
diff --git a/finances/views.py b/finances/views.py
index 0344eb2295bcdfa7b53f34d4b98242f84d57523b..73d12841f05cc2e65a7e4b39ea6f13bf28d313ca 100644
--- a/finances/views.py
+++ b/finances/views.py
@@ -58,6 +58,18 @@ class SubsidyDeleteView(PermissionsMixin, DeleteView):
 class SubsidyListView(ListView):
     model = Subsidy
 
+    def get_queryset(self):
+        qs = super().get_queryset()
+        order_by = self.request.GET.get('order_by')
+        ordering = self.request.GET.get('ordering')
+        if order_by == 'amount':
+            qs = qs.order_by('amount')
+        elif order_by == 'date':
+            qs = qs.order_by('date')
+        if ordering == 'desc':
+            qs = qs.reverse()
+        return qs
+
 
 class SubsidyDetailView(DetailView):
     model = Subsidy
diff --git a/organizations/templates/organizations/organization_list.html b/organizations/templates/organizations/organization_list.html
index 90645d7127c31c9c15c4a574da0bde61bacd8f48..3d854d78423d91dad71e20963a0c919305d4a1b4 100644
--- a/organizations/templates/organizations/organization_list.html
+++ b/organizations/templates/organizations/organization_list.html
@@ -73,8 +73,16 @@ $(document).ready(function($) {
 	  <th><a href="?order_by=country">Country</a></th>
 	  <th><a href="?order_by=name">Name</a>&nbsp;&nbsp;<small>[acronym]</small></th>
 	  <th>NAP <i class="fa fa-info-circle" data-toggle="tooltip" data-html="true" title="" data-original-title="Number of associated publications<br/>For details, click on the Organization and consult the Associated Publications tab"></i>
-	    {% if request.GET.ordering != 'asc' %}</a> <a href="?order_by=nap&ordering=asc"><i class="fa fa-sort-asc"></i></a>{% endif %}
-{% if request.GET.ordering != 'desc' %}<a href="?order_by=nap&ordering=desc"><i class="fa fa-sort-desc"></i></a>{% endif %}
+	    {% if request.GET.ordering != 'asc' %}
+	    <a href="?order_by=nap&ordering=asc"><i class="fa fa-sort-asc"></i></a>
+	    {% else %}
+	    <a href="{% url 'organizations:organizations' %}"><i class="fa fa-sort-asc"></i></a>
+	    {% endif %}
+	    {% if request.GET.ordering != 'desc' %}
+	    <a href="?order_by=nap&ordering=desc"><i class="fa fa-sort-desc"></i></a>
+	    {% else %}
+	    <a href="{% url 'organizations:organizations' %}"><i class="fa fa-sort-desc"></i></a>
+	    {% endif %}
 </th>
 	  <th>SciPost sponsor?</th>
 	</tr>
diff --git a/scipost/templates/scipost/foundation.html b/scipost/templates/scipost/foundation.html
index d541dee897dfa5f9fb7b39264c77ca27a7186349..3c460109760ddab690e13652b04846b8ee01bb3e 100644
--- a/scipost/templates/scipost/foundation.html
+++ b/scipost/templates/scipost/foundation.html
@@ -101,9 +101,7 @@
                 <div class="card-body">
                     <h2 class="highlight">Financial Reports</h2>
 		    <ul>
-                      <li><a href="{% static 'scipost/info/AnnualReports/AnnualReport_2015.pdf' %}">Annual Report 2015</a></li>
-                    <li><a href="{% static 'scipost/info/AnnualReports/AnnualReport_2016.pdf' %}">Annual Report 2016</a></li>
-                    <li><a href="{% static 'scipost/info/AnnualReports/AnnualReport_2017.pdf' %}">Annual Report 2017</a></li>
+		      <li>See all on our <a href="{% url 'finances:finances' %}#reports">Finances page</a></li>
 		    </ul>
                 </div>
             </div>