This VGM is scheduled from {{ VGM.start_date|date:'Y-m-d' }} to {{ VGM.end_date|date:'Y-m-d' }}.
Your feedback/suggestions/criticisms on any aspect of SciPost are greatly valued. Provide them by filling the feedback form.
Your nominations to the Editorial College are welcome. Simply fill the nomination form, and cast your vote on current nominations.
For substantial changes, for example to the by-laws, new Motions can be put forward until the end of the meeting using the form.
Voting on Motions is open until one week after the meeting.
You a referred to the by-laws, section 2 for further details about the procedures.
Feedback on SciPost
General Feedback provided
{% for feedback in feedback_received %}
{{ feedback.as_li }}
{% 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
Current Fellows
{% for Fellow in current_Fellows %}
{{ Fellow }}
{{ Fellow.discipline_as_string }}
{{ Fellow.expertises_as_string }}
{% endfor %}
Invitations currently outstanding
{% for invitee in pending_inv_Fellows %}
{{ invitee.first_name }} {{ invitee.last_name }}
{% endfor %}
Invitations which have been turned down
{% for invitee in declined_inv_Fellows %}
{{ invitee.first_name }} {{ invitee.last_name }}
{% endfor %}
{% 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' }}):
{% 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 %}
{% 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
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' }}):
{% 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 %}
{% if motion.remark_set.all %}
Remarks on this motion:
{% for rem in motion.remark_set.all %}
{{ rem.as_li }}
{% endfor %}