mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 17:38:50 -04:00
Use radio button desc. pattern on go live page
Nicer than using en dashes.
This commit is contained in:
@@ -391,8 +391,8 @@ class RequestToGoLiveForm(Form):
|
||||
),
|
||||
choices=[
|
||||
('yes', 'Yes'),
|
||||
('no', 'No – we’ll send you a copy'),
|
||||
('don’t know', 'I don’t know – we’ll check for you')
|
||||
('no', 'No'),
|
||||
('don’t know', 'I don’t know')
|
||||
],
|
||||
validators=[DataRequired()]
|
||||
)
|
||||
|
||||
@@ -33,7 +33,10 @@
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<p>We need permission to process your data before we can make your service live.</p>
|
||||
{{ radios(form.mou) }}
|
||||
{{ radios(form.mou, option_hints={
|
||||
'no': 'We’ll send you a copy',
|
||||
'don’t know': 'We’ll check for you',
|
||||
}) }}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{{ radios(form.channel) }}
|
||||
|
||||
Reference in New Issue
Block a user