goodscary / firstrubyfriend

Rails app to administer the friendliest programmer mentoring programme in the world
5 stars 3 forks source link

Add MentorQuestionnaire Form View #23

Open pratiktamang opened 9 months ago

pratiktamang commented 9 months ago

The questions to be presented to the mentors and db schema:

Question Corresponding Database Field (model: field)
1. What's your name? MentorQuestionnaire: name
2. Where do you work? MentorQuestionnaire: company_url
3. Year you started programming in Ruby? User: demographic_year_started_ruby
4. Country User: country_code
5. City User: city
6. Twitter MentorQuestionnaire: twitter_handle
7. Github MentorQuestionnaire: github_handle
8. Do you have a personal site? MentorQuestionnaire: personal_site_url
9. Worked anywhere else? MentorQuestionnaire: previous_workplaces
10. Have you done any mentoring before? MentorQuestionnaire: has_mentored_before
11. Why are you doing this? MentorQuestionnaire: mentoring_reason
12. Are you interested in mentoring on career advancement and professional development? MentorQuestionnaire: preferred_style_career
13. Are you interested in mentoring on coding practices and technical skills? MentorQuestionnaire: preferred_style_code
14. What languages do you speak? UserLanguage: language_id and user_id

Subtasks

pratiktamang commented 9 months ago

@andycroll Created this issue to organise the work on mentor questionnaire form. This should also help keep the PRs granular as we work through making it functional.