Skip to content

Commit

Permalink
Add new question & new content about mentorship
Browse files Browse the repository at this point in the history
The chairs wanted some examples on what people want to get from
membership, as well as a new question about expected longevity.
  • Loading branch information
DavidCain committed Oct 31, 2024
1 parent 60a3761 commit 5eb72f0
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 1 deletion.
30 changes: 30 additions & 0 deletions ws/migrations/0006_add_ws_application_question.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Generated by Django 4.2.16 on 2024-10-31 03:13

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("ws", "0005_remove_participant_discounts_delete_discount"),
]

operations = [
migrations.AddField(
model_name="winterschoolleaderapplication",
name="mentorship_longevity",
field=models.TextField(
blank=True,
help_text="How long are you planning stay with MITOC? No need to be exact, just a tentative timeframe which can help us pair mentors/mentees.",
max_length=5000,
),
),
migrations.AlterField(
model_name="winterschoolleaderapplication",
name="mentorship_goals",
field=models.TextField(
blank=True,
help_text='What are you looking to get out of the mentorship program? Possible examples include learning how to: "lead trips in winter," "be an ice-climbing leader," "lead full C/I/S trips," or "manage group dynamics."',
max_length=5000,
),
),
]
14 changes: 13 additions & 1 deletion ws/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1972,7 +1972,19 @@ class WinterSchoolLeaderApplication(LeaderApplication):
mentorship_goals = models.TextField(
blank=True,
max_length=5000,
help_text="What are you looking to get out of the mentorship program?",
help_text=(
"What are you looking to get out of the mentorship program? "
"Possible examples include learning how to: "
'"lead trips in winter," '
'"be an ice-climbing leader," '
'"lead full C/I/S trips," '
'or "manage group dynamics."'
),
)
mentorship_longevity = models.TextField(
blank=True,
max_length=5000,
help_text="How long are you planning stay with MITOC? No need to be exact, just a tentative timeframe which can help us pair mentors/mentees?",
)

@classmethod
Expand Down
1 change: 1 addition & 0 deletions ws/templates/for_templatetags/ws_application.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,5 @@ <h5>Mentee expectations</h5>
</div>
</div>
{{ form.mentorship_goals|as_crispy_field }}
{{ form.mentorship_longevity|as_crispy_field }}
<br>
1 change: 1 addition & 0 deletions ws/tests/test_privacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ def test_leader_school_applications(self):
"other_experience": "Leader in my college outing club",
"notes_or_comments": "",
"mentorship_goals": "",
"mentorship_longevity": "",
"mentor_activities": [],
"mentee_activities": [],
}
Expand Down

0 comments on commit 5eb72f0

Please sign in to comment.