diff --git a/userprofile/forms.py b/userprofile/forms.py
index a6f8a3209a4bc8852b2e268f2efddaff9af33d37..9d092e5f8dbdf8b324fc6b62f86dd016940976a5 100644
--- a/userprofile/forms.py
+++ b/userprofile/forms.py
@@ -46,5 +46,7 @@ class TriggerForm(forms.ModelForm):
 class ContactForm(forms.ModelForm):
     class Meta:
         model = Contact
-        exclude = ['user']
-
+        fields = ['desc','email','phone']
+        help_texts = {
+            'phone': 'Prototype service: may not be available in the future.'
+        }