{% extends 'scipost/base.html' %} {% load bootstrap %} {% block pagetitle %}: personal page{% endblock pagetitle %} {% block content %} {% if 'Registered Contributors' not in user_groups %}

Your credentials will soon be verified by an Editor.

If accepted, you will become a registered Contributor, enabling you to submit, comment and vote.

{% else %}

Welcome to your SciPost Personal Page, {{ appellation }}

Your Account

Your personal details:

{% include "scipost/_private_info_as_table.html" with contributor=contributor %}

Your main discipline:

  • {{ contributor.discipline_as_string }}

Your expertises:

{% if contributor.expertises %} {% include "scipost/_expertises_as_ul.html" with contributor=contributor %} {% else %}

You haven't listed your expertise(s).
Do so by updating your personal data

{% endif %}
{% if 'SciPost Administrators' in user_groups %}

You are a SciPost Administrator.

{% endif %} {% if 'Editorial Administrators' in user_groups %}

You are a SciPost Editorial Administrator.

{% endif %} {% if 'Advisory Board' in user_groups %}

You are a member of the Advisory Board.

{% endif %} {% if 'Editorial College' in user_groups %}

You are a member of the Editorial College.

{% endif %} {% if 'Vetting Editors' in user_groups %}

You are a SciPost Vetting Editor.

{% endif %} {% if 'Registered Contributors' in user_groups %}

You are a Registered Contributor.

{% endif %} {% if 'Testers' in user_groups %}

You are a SciPost Tester.

{% endif %} {% if 'Ambassadors' in user_groups %}

You are a SciPost Ambassador.

{% endif %} {% if 'Junior Ambassadors' in user_groups %}

You are a SciPost Junior Ambassador.

{% endif %} {% if 'Production Officers' in user_groups %}

You are a SciPost Production Officer.

{% endif %}

Update your personal data or password


Your Availability

To help with the editorial workflow, you can inform us of any periods during which you are unavailable. We will do our best to respect these.

Mark a period as unavailable:

{% csrf_token %} {{ unavailability_form|bootstrap }}
{% if unavailabilities %}

Your unavailability periods in our records

(YYYY-DD-MM)

{% for unav in unavailabilities %} {% endfor %}
Start End
{{ unav.start }} {{ unav.end }}
{% csrf_token %}
{% else %}

You don't have any upcoming unavailability periods on record.

{% endif %}
{% if 'SciPost Administrators' in user_groups or 'Editorial Administrators' in user_groups or 'Editorial College' in user_groups or 'Advisory Board' in user_groups or 'Vetting Editors' in user_groups or 'Ambassadors' in user_groups or 'Junior Ambassadors' in user_groups %}

Pending Editorial Actions

{% if 'SciPost Administrators' in user_groups or 'Advisory Board' in user_groups or 'Ambassadors' in user_groups or 'Junior Ambassadors' in user_groups %}

Registration actions

{% if perms.scipost.can_manage_registration_invitations %}

Notifications

{% endif %} {% if 'SciPost Administrators' in user_groups %}

Email communications

{% endif %}
{% endif %}
{% if 'Vetting Editors' in user_groups or perms.scipost.can_vet_submitted_reports %}

Vetting actions

    {% if perms.scipost.can_vet_commentary_requests %}
  • Vet Commentary Page requests ({{ nr_commentary_page_requests_to_vet }})
  • {% endif %} {% if perms.scipost.can_vet_comments %}
  • Vet submitted Comments ({{ nr_comments_to_vet }})
  • {% endif %} {% if perms.scipost.can_vet_thesislink_requests %}
  • Vet Thesis Link Requests ({{ nr_thesislink_requests_to_vet }})
  • {% endif %} {% if perms.scipost.can_vet_authorship_claims %}
  • Vet Authorship Claims ({{ nr_authorship_claims_to_vet }})
  • {% endif %} {% if perms.scipost.can_vet_submitted_reports %}
  • Vet submitted Reports ({{ nr_reports_to_vet }})
  • {% endif %}
{% endif %} {% if 'Editorial Administrators' in user_groups %}

Editorial Admin actions

{% endif %} {% if perms.scipost.can_attend_VGMs %}

Virtual General Meetings

{% endif %}
{% if 'Editorial Administrators' in user_groups or 'Editorial College' in user_groups %}

Info

Submissions assignments

    {% if perms.scipost.can_view_pool %}
  • Your assignments
  • View assignments overview
  • {% endif %} {% if perms.scipost.can_assign_submissions %}
  • Assign Submissions via the Submissions Pool ({{ nr_submissions_to_assign }})
  • {% endif %} {% if perms.scipost.can_take_charge_of_submissions %}
  • Accept or decline assignments via the Submissions Pool ({{ nr_assignments_to_consider }})
  • {% endif %}
{% if 'Editorial Administrators' in user_groups %}

Refereeing overview

Voting

  • Prepare Editorial Recommendations for voting via the Submissions Pool ({{ nr_recommendations_to_prepare_for_voting }})
{% endif %}
{% endif %}
{% if active_assignments %}

Submissions for which you are Editor-in-charge

    {% for assignment in active_assignments %}
  • {% include 'submissions/_submission_card_eic_content.html' with submission=assignment.submission %}
  • {% endfor %}
{% endif %}
{% endif %} {% if perms.scipost.can_view_production %}

Production Tasks

{% endif %} {% if perms.scipost.can_referee %}

Refereeing Tasks

Pending Refereeing Tasks:

    {% for task in pending_ref_tasks %}
  • {% include 'submissions/_refereeing_invitation_card_content.html' with invitation=task %}
  • {% empty %}
  • You do not have any pending refereeing task
  • {% endfor %}
{% if contributor.reports.in_draft.exists %}

Unfinished reports:

    {% for report in contributor.reports.in_draft.all %}
  • {% include 'submissions/_submission_card_content.html' with submission=report.submission %}
  • {% endfor %}
{% endif %} {% if contributor.reports.non_draft.exists %}

Finished reports:

    {% for report in contributor.reports.non_draft.all %}
  • {% comment %} Temporary: There is already a template for a "Report summary" in a parallel (unmerged) branch. Awaiting merge to use that template. {% endcomment %}

    Report on Submission {{report.submission.title}}

    Received:{{ report.date_submitted|date:'Y-n-j' }}
    Status:{{report.get_status_display}}
    Anonymous:{{report.anonymous|yesno:'Yes,No'}}
  • {% endfor %}
{% endif %}
{% endif %}
{# {% if own_submissions %}#}

Submissions for which you are identified as an author:

    {% for sub in own_submissions %}
  • {% include 'submissions/_submission_card_author_content.html' with submission=sub current_user=request.user %}
  • {% empty %}
  • No Submissions found
  • {% endfor %}
{# {% endif %}#}

Commentaries for which you are identified as an author:

    {% for com in own_commentaries %}
  • {% include 'commentaries/_commentary_card_content.html' with commentary=com %}
  • {% empty %}
  • No Commentaries found
  • {% endfor %}

Theses for which you are identified as an author:

    {% for thesis in own_thesislinks %}
  • {% include 'theses/_thesislink_card_content.html' with thesislink=thesis %}
  • {% empty %}
  • No Theses found
  • {% endfor %}

Your Comments

    {% for own_comment in own_commentsx %}
  • {% include 'comments/_comment_card_extended_content.html' with comment=own_comment %}
  • {% empty %}
  • You have not commented yet.
  • {% endfor %}

Your Author Replies

    {% for own_reply in own_authorreplies %}
  • {% include 'comments/_comment_card_extended_content.html' with comment=own_reply %}
  • {% empty %}
  • You do not have Author Replies yet.
  • {% endfor %}
{% endif %} {% endblock content %}