diff --git a/scipost_django/submissions/templates/submissions/pool/_hx_submission_fellow_row.html b/scipost_django/submissions/templates/submissions/pool/_hx_submission_fellow_row.html
index f628453b3a86f0f3982ec587dc159ef88352882a..c6cb9f6811d8d89df98971f7b80ec0602879b0f4 100644
--- a/scipost_django/submissions/templates/submissions/pool/_hx_submission_fellow_row.html
+++ b/scipost_django/submissions/templates/submissions/pool/_hx_submission_fellow_row.html
@@ -2,7 +2,9 @@
 {% load ethics_extras %}
 
 <tr>
-  <td>{{ fellowship.contributor }}</td>
+  <td>
+    <a href="{{ fellowship.get_absolute_url }}">{{ fellowship.contributor }}</a>
+  </td>
   <td>{{ fellowship.get_status_display }}</td>
   <td>
 
@@ -13,6 +15,9 @@
     {% endif %}
 
   </td>
+  <td>
+    {% include "icons/reception.html" with value=fellowship.contributor.editorial_assignments.ongoing.count max=4 %}
+  </td>
   <td>{% get_fellow_qualification_expertise_level_display submission fellowship %}</td>
 
   {% if "edadmin" in user_roles or "active_senior_fellow" in user_roles %}
diff --git a/scipost_django/submissions/templates/submissions/pool/_submission_fellows.html b/scipost_django/submissions/templates/submissions/pool/_submission_fellows.html
index 31d164c9e96aebd8098bc6a40fa8afb95c425263..7ecfcb6928ea45afcc95134a44359c21b52bc165 100644
--- a/scipost_django/submissions/templates/submissions/pool/_submission_fellows.html
+++ b/scipost_django/submissions/templates/submissions/pool/_submission_fellows.html
@@ -18,6 +18,7 @@
         <br />
         available
       </th>
+      <th>Workload</th>
       <th>Qualification</th>
 
       {% if "edadmin" in user_roles or "active_senior_fellow" in user_roles %}