diff --git a/scipost_django/colleges/templates/colleges/fellowship_detail.html b/scipost_django/colleges/templates/colleges/fellowship_detail.html index 64e414194c64ccbde251301ed55bef52f3721a9c..b609656398631790a737e6eb633b37f181b820de 100644 --- a/scipost_django/colleges/templates/colleges/fellowship_detail.html +++ b/scipost_django/colleges/templates/colleges/fellowship_detail.html @@ -26,8 +26,16 @@ </tr> <tr> <th>Fellow</th> - <td>{{ fellowship }}</td> + <td><a href="{{ fellowship.contributor.profile.get_absolute_url }}">{{ fellowship.contributor }}</a></td> </tr> + {% if "edadmin" in user_roles %} + <tr> + <th>Primary email</th> + <td><a href="mailto:{{ fellowship.contributor.profile.email }}?body=Dear%20{{ fellowship.contributor.formal_str }},%0A%0A" + class="text-primary">{{ fellowship.contributor.profile.email }}</a> + </td> + </tr> + {% endif %} <tr> <th>Academic field</th> <td>{{ fellowship.contributor.profile.acad_field }}</td>