Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading