-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new question & new content about mentorship
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
Showing
4 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters