{% extends 'base.html' %} {% block title %}Track Your Submission | {{ settings.site_name }}{% endblock %} {% block content %}

Track Your Submission

Check the status of your research submission

{% if submission %}
Submission Details {{ submission.status.replace('_', ' ').title() }}

Tracking ID

{{ submission.tracking_id }}

Submitted On

{{ submission.created_at.strftime('%B %d, %Y') }}

Title

{{ submission.title }}

Authors

{{ submission.authors }}

Journal

{{ submission.journal.name }}

Abstract

{{ submission.abstract }}

{% if submission.tags %}

Tags

{% for tag in submission.tags %} {{ tag.name }} {% endfor %}
{% endif %}
Status History
{{ submission.status.replace('_', ' ').title() }}

Current Status

{% for update in submission.status_updates.all() %}
{{ update.new_status.replace('_', ' ').title() }}

{{ update.created_at.strftime('%B %d, %Y at %I:%M %p') }}

{% if update.notes %}

{{ update.notes }}

{% endif %}
{% endfor %}
Submitted

{{ submission.created_at.strftime('%B %d, %Y at %I:%M %p') }}

What Does This Mean?
{% if submission.status == 'pending' %}

Your submission has been received and is awaiting initial review by our editorial team. You will be notified when the review begins.

{% elif submission.status == 'under_review' %}

Your submission is currently being reviewed by our expert reviewers. This process typically takes 2-4 weeks. You will be notified of the outcome.

{% elif submission.status == 'revision_requested' %}

Our reviewers have requested revisions to your submission. Please review the feedback provided and resubmit your revised manuscript.

{% elif submission.status == 'accepted' %}

Congratulations! Your submission has been accepted for publication. Our team will contact you with further details.

{% elif submission.status == 'rejected' %}

Unfortunately, your submission was not accepted for publication. Please review any feedback provided and consider resubmitting after revisions.

{% elif submission.status == 'published' %}

Published! Your submission has been published. Thank you for your contribution to the scientific community.

{% endif %}
{% elif tracking_id %}
No submission found with tracking ID: {{ tracking_id }}

Please check the tracking ID and try again.

{% else %}

Enter Your Tracking ID

Your tracking ID was sent to your email when you submitted your research.
It looks like: SP-202401-XXXXXXXX

{% endif %}
Need Help?

Can't find your tracking ID? Contact us for assistance.

{% endblock %}