{% extends 'scipost/base.html' %} {% block pagetitle %}: VGM detail{% endblock pagetitle %} {% load staticfiles %} {% block bodysup %}

SciPost Virtual General Meeting


Information message from SciPost Administration

{{ VGM_information }}

Quick bullet points:



Feedback on SciPost

{% csrf_token %} {{ feedback_form.as_p }}

General Feedback provided

    {% for feedback in feedback_received %}
  • {{ feedback.as_li }}
  • {% csrf_token %} {{ remark_form.as_p }}
    {% if feedback.remark_set.all %}

    Remarks on this feedback:

      {% for rem in feedback.remark_set.all %} {{ rem.as_li }} {% endfor %}
    {% endif %} {% endfor %}

Nominations to the Editorial College

{% csrf_token %} {{ nomination_form.as_p }}

Current Fellows

{% for Fellow in current_Fellows %} {% endfor %}
{{ Fellow }}{{ Fellow.discipline_as_string }} {{ Fellow.expertises_as_string }}

Invitations currently outstanding

{% for invitee in pending_inv_Fellows %} {% endfor %}
{{ invitee.first_name }} {{ invitee.last_name }}

Invitations which have been turned down

{% for invitee in declined_inv_Fellows %} {% endfor %}
{{ invitee.first_name }} {{ invitee.last_name }}
{% if nominations %}

Nominations under consideration

    {% for nomination in nominations %}
  • {{ nomination.as_li }}

    Your opinion on this Nomination (voting deadline: {{ nomination.voting_deadline|date:'y-m-d' }}):

    {% csrf_token %}
    {% csrf_token %}
    {% csrf_token %}
    {% if request.user.contributor in nomination.in_agreement.all %} (you have voted: Agreed) {% elif request.user.contributor in nomination.in_notsure.all %} (you have voted: Not sure) {% elif request.user.contributor in nomination.in_disagreement.all %} (you have voted: Disagree) {% endif %}


    {% csrf_token %} {{ remark_form.as_p }}
    {% if nomination.remark_set.all %}

    Remarks on this nomination:

      {% for rem in nomination.remark_set.all %} {{ rem.as_li }} {% endfor %}
    {% endif %}

  • {% endfor %}
{% endif %}

Submit a new Motion

{% csrf_token %} {% load crispy_forms_tags %} {% crispy motion_form %}

Motions under consideration

{% for key, val in motion_categories_dict.items %}

{{ val }}:

    {% for motion in VGM.motion_set.all %} {% if motion.category == key %}
  • {{ motion.as_li }}

    Your opinion on this Motion (voting deadline: {{ motion.voting_deadline|date:'y-m-d' }}):

    {% csrf_token %}
    {% csrf_token %}
    {% csrf_token %}
    {% if request.user.contributor in motion.in_agreement.all %} (you have voted: Agreed) {% elif request.user.contributor in motion.in_notsure.all %} (you have voted: Not sure) {% elif request.user.contributor in motion.in_disagreement.all %} (you have voted: Disagree) {% endif %}


    {% csrf_token %} {{ remark_form.as_p }}
    {% if motion.remark_set.all %}

    Remarks on this motion:

      {% for rem in motion.remark_set.all %} {{ rem.as_li }} {% endfor %}
    {% endif %}

  • {% endif %} {% endfor %}
{% endfor %}
{% endblock bodysup %}