diff --git a/submissions/models.py b/submissions/models.py
index cda0db5dd7c91b307fb4ec55b539f1e9002f3bcb..8ef6eac1d6695abb3b5a59fa3a899ccbab082384 100644
--- a/submissions/models.py
+++ b/submissions/models.py
@@ -88,8 +88,10 @@ class Submission(models.Model):
         header += '<tr><td>Author(s): </td><td>&nbsp;</td><td>{{ author_list }}</td></tr>'
         header += '<tr><td>As Contributors: </td><td>&nbsp;</td>'
         if self.authors.all():
+            header += '<td>'
             for auth in self.authors.all():
-                header += '<td><a href="/contributor/' + str(auth.id) + '">' + auth.user.first_name + ' ' + auth.user.last_name + '</a></td>'
+                header += '<a href="/contributor/' + str(auth.id) + '">' + auth.user.first_name + ' ' + auth.user.last_name + '</a>&nbsp;&nbsp;'
+            header += '</td>'
         else:
             header += '<td>(none claimed)</td>'
         header += '</tr>'