Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
metadata:
title: Yes/no radio buttons
short title: Yes/no radio buttons
documentation: "https://docassemble.org/docs/fields.html#fields yesnoradio"
---
question: |
Please provide the following information.
fields:
- "Do you like apricots?": likes_apricots
datatype: yesnoradio
- "Do you like pineapple?": dislikes_pineapple
datatype: noyesradio
---
question: |
Thank you for that information.
subquestion: |
% if likes_apricots:
You like apricots.
% endif
% if dislikes_pineapple:
You do not like pineapple.
% endif
mandatory: True