diff --git a/colleges/constants.py b/colleges/constants.py
index a5d3cc8f4905e0b606e34701ffef38f9777f8ecd..937d89623290e5e2fdc490d0d25a767a4e3bd6c2 100644
--- a/colleges/constants.py
+++ b/colleges/constants.py
@@ -29,10 +29,13 @@ PROSPECTIVE_FELLOW_STATUSES = (
     (PROSPECTIVE_FELLOW_ACTIVE_IN_COLLEGE, 'Currently active in a College'),
     (PROSPECTIVE_FELLOW_SCIPOST_EMERITUS, 'SciPost Emeritus'),
 )
+prospective_Fellow_statuses_dict = dict(PROSPECTIVE_FELLOW_STATUSES)
+
 
 PROSPECTIVE_FELLOW_EVENT_DEFINED = 'defined'
 PROSPECTIVE_FELLOW_EVENT_EMAILED = 'emailed'
 PROSPECTIVE_FELLOW_EVENT_RESPONDED = 'responded'
+PROSPECTIVE_FELLOW_EVENT_STATUSUPDATED = 'statusupdated'
 PROSPECTIVE_FELLOW_EVENT_COMMENT = 'comment'
 PROSPECTIVE_FELLOW_EVENT_DEACTIVATION = 'deactivation'
 
@@ -40,6 +43,7 @@ PROSPECTIVE_FELLOW_EVENTS = (
     (PROSPECTIVE_FELLOW_EVENT_DEFINED, 'Defined in database'),
     (PROSPECTIVE_FELLOW_EVENT_EMAILED, 'Emailed with invitation'),
     (PROSPECTIVE_FELLOW_EVENT_RESPONDED, 'Response received'),
+    (PROSPECTIVE_FELLOW_EVENT_STATUSUPDATED, 'Status updated'),
     (PROSPECTIVE_FELLOW_EVENT_COMMENT, 'Comment'),
     (PROSPECTIVE_FELLOW_EVENT_DEACTIVATION, 'Deactivation: not considered anymore'),
 )
diff --git a/colleges/forms.py b/colleges/forms.py
index 1bf29104cf17c9e6c41623f6d6ab73cb2d5ecd00..0ebff9c83b576c75a47606b74c80db7e8df8fee8 100644
--- a/colleges/forms.py
+++ b/colleges/forms.py
@@ -227,6 +227,13 @@ class ProspectiveFellowForm(forms.ModelForm):
                   'discipline', 'expertises', 'webpage', 'status', 'contributor']
 
 
+class ProspectiveFellowStatusForm(forms.ModelForm):
+
+    class Meta:
+        model = ProspectiveFellow
+        fields = ['status']
+
+
 class ProspectiveFellowEventForm(forms.ModelForm):
 
     class Meta:
diff --git a/colleges/migrations/0006_auto_20180703_1208.py b/colleges/migrations/0006_auto_20180703_1208.py
new file mode 100644
index 0000000000000000000000000000000000000000..33e5fefdf019827a4694033fa542aa717e8f4774
--- /dev/null
+++ b/colleges/migrations/0006_auto_20180703_1208.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.4 on 2018-07-03 10:08
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('colleges', '0005_auto_20180701_2110'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='prospectivefellowevent',
+            name='event',
+            field=models.CharField(choices=[('defined', 'Defined in database'), ('emailed', 'Emailed with invitation'), ('responded', 'Response received'), ('statusupdated', 'Status updated'), ('comment', 'Comment'), ('deactivation', 'Deactivation: not considered anymore')], max_length=32),
+        ),
+    ]
diff --git a/colleges/templates/colleges/_prospectivefellow_card.html b/colleges/templates/colleges/_prospectivefellow_card.html
index a86615aec18f6dbd0063ec243ae13a659eed1fc9..48edb8808caf78bf103b322a52aba5096739b7e7 100644
--- a/colleges/templates/colleges/_prospectivefellow_card.html
+++ b/colleges/templates/colleges/_prospectivefellow_card.html
@@ -38,6 +38,13 @@
       </ul>
     </div>
     <div class="col-md-5">
+      <h3>Update the status of this Prospective Fellow</h3>
+      <form class="d-block mt-2 mb-3" action="{% url 'colleges:prospective_Fellow_update_status' pk=prosfel.id %}" method="post">
+	{% csrf_token %}
+	{{ pfstatus_form|bootstrap }}
+	<input type="submit" name="submit" value="Update status" class="btn btn-outline-secondary">
+      </form>
+      <hr/>
       <h3>Add an event for this Prospective Fellow</h3>
       <form class="d-block mt-2 mb-3" action="{% url 'colleges:prospective_Fellow_event_create' pk=prosfel.id %}" method="post">
         {% csrf_token %}
diff --git a/colleges/urls.py b/colleges/urls.py
index 9efbdadec0c45c1f4be35a5766818ab07ab61e29..fbb098dc1a0b0cf678246e1c0f83ea834572e257 100644
--- a/colleges/urls.py
+++ b/colleges/urls.py
@@ -59,6 +59,11 @@ urlpatterns = [
         views.ProspectiveFellowUpdateView.as_view(),
         name='prospective_Fellow_update'
     ),
+    url(
+        r'^prospectivefellows/(?P<pk>[0-9]+)/update_status/$',
+        views.ProspectiveFellowUpdateStatusView.as_view(),
+        name='prospective_Fellow_update_status'
+    ),
     url(
         r'^prospectivefellows/(?P<pk>[0-9]+)/delete/$',
         views.ProspectiveFellowDeleteView.as_view(),
diff --git a/colleges/views.py b/colleges/views.py
index 7dfe56c5cdd1d4ffb68a241a48aaa0840203095e..aa3a47a95175f5e7f8407e1b40ad8be23ab6ecc6 100644
--- a/colleges/views.py
+++ b/colleges/views.py
@@ -13,12 +13,15 @@ from django.views.generic.list import ListView
 
 from submissions.models import Submission
 
-from .constants import PROSPECTIVE_FELLOW_EVENT_EMAILED
+from .constants import PROSPECTIVE_FELLOW_INVITED,\
+    prospective_Fellow_statuses_dict,\
+    PROSPECTIVE_FELLOW_EVENT_EMAILED, PROSPECTIVE_FELLOW_EVENT_STATUSUPDATED,\
+    PROSPECTIVE_FELLOW_EVENT_COMMENT
 from .forms import FellowshipForm, FellowshipTerminateForm, FellowshipRemoveSubmissionForm,\
     FellowshipAddSubmissionForm, AddFellowshipForm, SubmissionAddFellowshipForm,\
     FellowshipRemoveProceedingsForm, FellowshipAddProceedingsForm, SubmissionAddVotingFellowForm,\
     FellowVotingRemoveSubmissionForm,\
-    ProspectiveFellowForm, ProspectiveFellowEventForm
+    ProspectiveFellowForm, ProspectiveFellowStatusForm, ProspectiveFellowEventForm
 from .models import Fellowship, ProspectiveFellow, ProspectiveFellowEvent
 
 from scipost.constants import SCIPOST_SUBJECT_AREAS
@@ -328,6 +331,27 @@ class ProspectiveFellowUpdateView(PermissionsMixin, UpdateView):
     success_url = reverse_lazy('colleges:prospective_Fellows')
 
 
+class ProspectiveFellowUpdateStatusView(PermissionsMixin, UpdateView):
+    """
+    Formview to update the status of a Prospective Fellow.
+    """
+    permission_required = 'scipost.can_manage_college_composition'
+    model = ProspectiveFellow
+    fields = ['status']
+    success_url = reverse_lazy('colleges:prospective_Fellows')
+
+    def form_valid(self, form):
+        event = ProspectiveFellowEvent(
+            prosfellow=self.object,
+            event=PROSPECTIVE_FELLOW_EVENT_STATUSUPDATED,
+            comments=('Status updated to %s'
+                      % prospective_Fellow_statuses_dict[form.cleaned_data['status']]),
+            noted_on=timezone.now(),
+            noted_by=self.request.user.contributor)
+        event.save()
+        return super().form_valid(form)
+
+
 class ProspectiveFellowDeleteView(PermissionsMixin, DeleteView):
     """
     Delete a Prospective Fellow.
@@ -359,6 +383,7 @@ class ProspectiveFellowListView(PermissionsMixin, ListView):
     def get_context_data(self, **kwargs):
         context = super().get_context_data(**kwargs)
         context['subject_areas'] = SCIPOST_SUBJECT_AREAS
+        context['pfstatus_form'] = ProspectiveFellowStatusForm()
         context['pfevent_form'] = ProspectiveFellowEventForm()
         return context
 
@@ -383,6 +408,8 @@ class ProspectiveFellowInitialEmailView(PermissionsMixin, MailView):
             noted_on=timezone.now(),
             noted_by=self.request.user.contributor)
         event.save()
+        self.object.status=PROSPECTIVE_FELLOW_INVITED
+        self.object.save()
         return super().form_valid(form)