From c3c954c31f147ce43af043f32a6030e6a92a8388 Mon Sep 17 00:00:00 2001 From: dojutsu-user Date: Thu, 18 Oct 2018 20:36:24 +0530 Subject: [PATCH] Add help_text in the form for adopting a project --- readthedocs/gold/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/readthedocs/gold/forms.py b/readthedocs/gold/forms.py index 12d1d364567..f3a69cf2edb 100644 --- a/readthedocs/gold/forms.py +++ b/readthedocs/gold/forms.py @@ -81,6 +81,7 @@ def get_subscription(self): class GoldProjectForm(forms.Form): project = forms.CharField( required=True, + help_text='Enter the project\'s slug' ) def __init__(self, *args, **kwargs):