Skip to content

Commit

Permalink
Plain language in feedback form (#22)
Browse files Browse the repository at this point in the history
* Simpler display and language on the feedback form

* Moved bug details to above the bug text area
  • Loading branch information
BryceStevenWilley authored Aug 4, 2022
1 parent f0eb300 commit 71f81e2
Showing 1 changed file with 32 additions and 17 deletions.
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

0 comments on commit 71f81e2

Please sign in to comment.