aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2018-01-08 09:38:03 +0000
committerMatthew Somerville <matthew-github@dracos.co.uk>2018-01-08 09:39:35 +0000
commit32be970f9519cda5ba3670e97ee6f243d159a54f (patch)
tree5024b9d59a1d21fd43da2ea57b04588cbd38f9ea /templates
parent0992ff2903e60f0a2c267dd024b0049bb7c5f1b7 (diff)
Add missing class on last questionnaire question.
This was somehow missed from 163c65cf.
Diffstat (limited to 'templates')
-rw-r--r--templates/web/base/questionnaire/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/base/questionnaire/index.html b/templates/web/base/questionnaire/index.html
index 84a9d7efd..12ca36cf2 100644
--- a/templates/web/base/questionnaire/index.html
+++ b/templates/web/base/questionnaire/index.html
@@ -101,9 +101,9 @@
<p>[% loc('Would you like to receive another questionnaire in 4 weeks, reminding you to check the status?') %]</p>
<p class="segmented-control segmented-control--radio">
<input type="radio" name="another" id="another_yes" value="Yes"[% ' checked' IF another == 'Yes' %]>
- <label for="another_yes">[% loc('Yes') %]</label>
+ <label class="btn" for="another_yes">[% loc('Yes') %]</label>
<input type="radio" name="another" id="another_no" value="No"[% ' checked' IF another == 'No' %]>
- <label for="another_no">[% loc('No') %]</label>
+ <label class="btn" for="another_no">[% loc('No') %]</label>
</p>
</div>