diff --git a/lung_cancer_screening/questions/forms/types_tobacco_smoking_form.py b/lung_cancer_screening/questions/forms/types_tobacco_smoking_form.py index 598b5d2e..c28342e1 100644 --- a/lung_cancer_screening/questions/forms/types_tobacco_smoking_form.py +++ b/lung_cancer_screening/questions/forms/types_tobacco_smoking_form.py @@ -29,6 +29,22 @@ def __init__(self, *args, response_set, **kwargs): self.fields["value"].initial = self.existing_types value_field=self['value'] + value_field.add_hint_for_choice( + TobaccoSmokingHistoryTypes.ROLLING_TOBACCO, + "or roll-ups", + ) + value_field.add_hint_for_choice( + TobaccoSmokingHistoryTypes.SMALL_CIGARS, + "Petit Corona or Short Panetela, usually 4 to 5 inches long", + ) + value_field.add_hint_for_choice( + TobaccoSmokingHistoryTypes.MEDIUM_CIGARS, + "Robusto or Corona, usually 5 to 6 inches long", + ) + value_field.add_hint_for_choice( + TobaccoSmokingHistoryTypes.LARGE_CIGARS, + "Churchill or Double Corona, usually 7 to 8 inches long", + ) value_field.add_hint_for_choice( TobaccoSmokingHistoryTypes.CIGARILLOS, "Cafe Creme or Signature cigars, roughly the size of a cigarette"