Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plain language in feedback form #22

Merged
merged 2 commits into from
Aug 4, 2022
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
49 changes: 32 additions & 17 deletions docassemble/GithubFeedbackForm/data/questions/feedback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,31 +99,43 @@ fields:
show if:
variable: reason
is: something
- label: |
**Share my specific answers with an administrator**[BR]
You can optionally share your answers on the online form with an
administrator. Only server administrators can view
this information. It will not be made public.
- note: |
If you ran into a bug, you can share your answers with
an administrator (they will not be made public) to help us
track down the problem.
[BR]
If you say no, it may be harder for us to track down the problem,
but we will still try our best.
We will not contact you either way.
show if:
code: |
server_share_answers and not get_config('debug')
variable: reason
is: something
- label: |
Share my answers with an administrator
label above field: False
field: share_interview_answers
datatype: yesnoradio
datatype: yesno
show if:
code: |
server_share_answers and not get_config('debug')
variable: reason
is: something
- label: |
**Would you like to be contacted to be a part of a user feedback panel?**
I am interested in being a part of a user feedback panel
label above field: False
field: would_be_on_panel
datatype: yesnoradio
datatype: yesno
default: False
show if:
code: |
server_ask_panel and not get_config('debug')
variable: reason
is: something
- note: |
We will contact you for the feedback panel by email.
show if:
variable: would_be_on_panel
is: True
- label: |
**What is your email?**
field: panel_email
Expand Down Expand Up @@ -175,14 +187,9 @@ fields:
show if:
variable: reason
is: language
- "**What is the bug?**": details
datatype: area
rows: 4
show if:
variable: reason
is: bug
- note: |
**Tell us the steps that you followed before the problem, what you expected to happen, and what actually happened.** [BR]
**Tell us the steps that you followed before the bug, what you expected to happen, and what actually happened.** [BR]

For example:

1. On the first page, I typed my first name.
Expand All @@ -191,7 +198,15 @@ fields:
show if:
variable: reason
is: bug
- "**What is the bug?**": details
datatype: area
rows: 4
show if:
variable: reason
is: bug
- "**What would you like to tell us?**": details
datatype: area
rows: 4
show if:
variable: reason
is: something
Expand Down