Skip to content
Merged
Show file tree
Hide file tree
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
1,991 changes: 660 additions & 1,331 deletions _data/mentors.yml

Large diffs are not rendered by default.

Binary file removed assets/images/mentors/abdul_qamardeen.jpg
Binary file not shown.
Binary file removed assets/images/mentors/adegbenga_agoro.jpg
Binary file not shown.
Binary file removed assets/images/mentors/adnan_salehin.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/agrin_hilmkil.jpg
Binary file not shown.
Binary file removed assets/images/mentors/ajeetha_kumari.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/alexey_buzovkin.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/anahi-gaetan.jpg
Binary file not shown.
Binary file removed assets/images/mentors/anastasia.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/andrew_king.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/anh_vu.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/arunkumar.jpg
Binary file not shown.
Binary file removed assets/images/mentors/avraham_poupko.jpg
Binary file not shown.
Binary file removed assets/images/mentors/bianca_stratulat.jpg
Binary file not shown.
Binary file removed assets/images/mentors/bomee_ryu.jpg
Binary file not shown.
Binary file removed assets/images/mentors/bryan_boreham.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/busra_sakar.jpg
Binary file not shown.
Binary file removed assets/images/mentors/ceri_shaw.jpg
Binary file not shown.
Binary file removed assets/images/mentors/chandeep_khosa.jpeg
Binary file not shown.
Binary file removed assets/images/mentors/ciera_fowler.jpg
Binary file not shown.
Binary file removed assets/images/mentors/claudia_lee.jpg
Binary file not shown.
Binary file removed assets/images/mentors/eniola_oduntani.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/griswald_brooks.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/hersi_kopani.png
Diff not rendered.
Binary file removed assets/images/mentors/jenny_johnson.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/julia_babahina.png
Diff not rendered.
Binary file removed assets/images/mentors/jyoti_yadav.jpg
Diff not rendered.
Binary file removed assets/images/mentors/kaylyn_van_norstrand.jpg
Diff not rendered.
Diff not rendered.
Binary file removed assets/images/mentors/lakshmi_balakrishnan.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/liko_chien.jpg
Diff not rendered.
Binary file removed assets/images/mentors/liliia_rafikova.png
Diff not rendered.
Binary file removed assets/images/mentors/lulu_cao.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/madhura_chaganty.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/marie_coquille.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/mena_esezobor.jpg
Diff not rendered.
Binary file removed assets/images/mentors/minsang_kim.jpg
Diff not rendered.
Binary file removed assets/images/mentors/mona_ahluwalia.jpg
Diff not rendered.
Binary file removed assets/images/mentors/monal_sanghvi.png
Diff not rendered.
Binary file removed assets/images/mentors/monique_grinstein.jpeg
Diff not rendered.
Diff not rendered.
Binary file removed assets/images/mentors/nishi_ajmera.jpg
Diff not rendered.
Binary file removed assets/images/mentors/nonna_shakhova.jpg
Diff not rendered.
Binary file removed assets/images/mentors/olga_volkova.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/paula_kennedy.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/prerna_singhal.jpg
Diff not rendered.
Binary file removed assets/images/mentors/rasim_sen.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/safiye_ipek.jpg
Diff not rendered.
Binary file removed assets/images/mentors/sahana_venkatesh.jpg
Diff not rendered.
Binary file removed assets/images/mentors/samantha-cohen.jpg
Diff not rendered.
1 change: 0 additions & 1 deletion assets/images/mentors/shailaja_koppu.svg
Diff not rendered.
Binary file removed assets/images/mentors/silda_balla.jpg
Diff not rendered.
Binary file removed assets/images/mentors/stephanie_senoner.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/tatiana_popova.jpg
Diff not rendered.
Binary file removed assets/images/mentors/tiffany_cappeellari.jpeg
Diff not rendered.
Binary file removed assets/images/mentors/tvisha_dholakia.jpg
Diff not rendered.
Binary file removed assets/images/mentors/udeme_jalekun.jpeg
Diff not rendered.
6 changes: 5 additions & 1 deletion mentors.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,12 @@ <h5 class="position">{{mentor.position}}</h5>
{% endif %}
<span>{% include icons/question-fill.svg %}</span>
</p>
{% if mentor.num_mentee > 0 %}
<p class="card-text content-justify"><label>Long-Term Mentee Slots</label>:
{{mentor.num_mentee}}</p>
{% endif %}
{% if mentor.hours > 0 %}
<p class="card-text content-justify"><label>Hours available per month</label>:
<p class="card-text content-justify"><label>Monthly Ad-Hoc Hours</label>:
{{mentor.hours}}</p>
{% endif %}
<p class="card-text content-justify"><label>Ideal Mentee</label>: {{mentor.skills.mentee}}
Expand Down
8 changes: 2 additions & 6 deletions tools/automation_mentors.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,12 +392,8 @@ def get_all_mentors_in_yml_format(yml_file_path, xlsx_file_path, current_period,
if not df_yml_row.empty:
mentor = xlsx_to_yaml_parser(df_mentors.iloc[row],
df_yml_row['Index'].item(),
current_period,
df_yml_row['Disabled'].item(),
df_yml_row['Sort'].item(),
df_yml_row['Matched'].item(),
df_yml_row['Num_mentee'].item())
logging.info(f"For {mentor_name} use index, disabled and sort from mentors.yml file")
current_period)
logging.info(f"For {mentor_name} use their existing index {df_yml_row['Index'].item()} from mentors.yml file")
else:
mentor = xlsx_to_yaml_parser(df_mentors.iloc[row],
new_index,
Expand Down