{% extends "intbase.html" %} {% block header %} {% endblock header %} {% block content %} {% if fmeetings %}

Current Group Meeting ({{fmeetings[0]['datestr']}})

  • Meeting Lead: {{fmeetings[0].get('lead', '')}}
  • Scribe: {{fmeetings[0].get('scribe', '')}}
  • {% if fmeetings[0].get('journal_club') %}
  • Journal club presentation:
  • presenter: {{ fmeetings[0].get('journal_club').get('presenter','') }} {% if "no jclub" not in fmeetings[0].get('journal_club').get('presenter','').lower() %}
  • doi: {{ fmeetings[0].get('journal_club').get('doi','') }} {%if fmeetings[0].get('journal_club', '').get('link')%}
  • link: {{- fmeetings[0].get('journal_club', '').get('link','tbd')-}}
  • {% else %}
  • Link: TBD
  • {% endif %}{% endif %}
    {% endif %} {% if fmeetings[0].get('presentation') %}
  • Research Presentation:
  • presenter: {{fmeetings[0].get('presentation').get('presenter','')}}
  • {% if "no pres" not in fmeetings[0].get('presentation').get('presenter','').lower() %}
  • title: {{fmeetings[0].get('presentation').get('title','')}}
  • {%if fmeetings[0].get('presentation', '').get('link')%}
  • link: {{- fmeetings[0].get('presentation', '').get('link','tbd')-}}
  • {%else%}
  • Link: TBD {%endif%}{%endif%}
  • {% endif %}

    Buddies:

  • Please everyone prepare ahead of time by sitting with your buddy and talking. If you are selected, present a 5 minute chalkboard talk about a project on airtable that your buddy worked on this week. You should present (1) the overarching scientific goal of the project, (2) the challenge (why is the answer not known already known?) (3) the importance (who cares?) (4) what your buddy is doing to address the challenge (5) what problems he/she is running in to.
  • {%if 'buddies' in fmeetings[0]%}{%endif%}

    Agenda:

    {%if 'agenda' in fmeetings[0]%}
      {%for a in fmeetings[0]['agenda']%}
    1. {{a}}
    2. {%endfor%}
    {%endif%} {% endif %}

    Last time ({{ppmeetings[0]['datestr']}})

  • Meeting Lead: {{ppmeetings[0].get('lead', '')}}
  • Scribe: {{ppmeetings[0].get('scribe', '')}}
  • {% if ppmeetings[0].get('journal_club') %}
  • Journal club presenter: {{ppmeetings[0].get('journal_club').get('presenter','')}}:
    {{ppmeetings[0].get('journal_club').get('doi','')}}
    {% endif %} {% if ppmeetings[0].get('presentation') %}
  • Presentation: {{ppmeetings[0].get('presentation').get('presenter','')}}, {{ppmeetings[0].get('presentation').get('title','')}}
  • Link: "Presentation"
  • {% endif %}

    Action Items:

    {%if 'actions' in ppmeetings[0]%}{%endif%}

    Minutes:

    {%if 'minutes' in ppmeetings[0]%}{%endif%}

    Agenda:

    {%if 'agenda' in ppmeetings[0]%}
      {%for a in ppmeetings[0]['agenda']%}
    1. {{a}}
    2. {%endfor%}
    {%endif%}

    Upcoming meetings

    {% for mtg in fmeetings[1:] %}

    {{mtg['datestr']}}

  • Meeting Lead: {{mtg.get('lead', '')}}
  • Scribe: {{mtg.get('scribe', '')}}
  • Journal club presenter: {{mtg.get('journal_club').get('presenter','')}},
  • Presentation: {{mtg.get('presentation').get('presenter','')}}, {% endfor %}

    Ancient history

    {%if len(jclublist) > 0 %}

    Journal Club Papers presented:

    {%endif%} {% for mtg in ppmeetings[1:] %}

    {{mtg['datestr']}}

  • Meeting Lead: {{mtg.get('lead', '')}}
  • {% if mtg.get('journal_club') %}
  • Journal Club: {{mtg.get('journal_club').get('presenter','')}}:
    {{mtg.get('journal_club').get('doi','')}}
    {% endif %} {% if mtg.get('presentation') %}
  • Presentation: {{mtg.get('presentation').get('presenter','')}}, {{mtg.get('presentation').get('title','')}}
  • {%if mtg.get('presentation', '').get('link') %}
  • Link: "Presentation"
  • {%else%}
  • Link: TBD {%endif%}
  • {% endif %}

    Action Items:

    {%if 'actions' in mtg%}{%endif%}

    Minutes:

    {%if 'minutes' in mtg%}{%endif%}

    Agenda:

    {%if 'agenda' in mtg%}
      {%for a in mtg['agenda']%}
    1. {{a}}
    2. {%endfor%}
    {%endif%} {% endfor %} {% endblock content %} {% block footer %} {% endblock footer %}