{% extends 'base.html' %} {% load humanize %} {% block content %}
{% if user == call.owner and call.get_next_status %}

{% endif %}
{{ call.about_rendered|safe }}

Details

Genre
{{ call.genre }}
Submission length
{{ call.length }}
Paid
{{ call.paid|yesno }}
Created
{{ call.ctime|naturaltime }}
Ends
{{ call.end_date|naturalday }}
Anonymous submissions
{{ call.anonymous_submissions|yesno }}
Open submissions
{% if call.invite_only %} no; submissions limited {% if user in call.readers %} to {{ call.restricted_to.all|join:', ' }} {% endif %} {% else %} yes {% endif %}
Slush-pile readers can submit
{{ call.readers_can_submit|yesno }}

 

{% for guideline in call.guideline_set.all %}
{{ guideline.key }}
{{ guideline.value_rendered|safe }}
{% endfor %}
{% if user.is_authenticated %}

Submit

{% if can_submit %}

Want to submit to {{ call.title }}? Great! Here's what you need to know

Submissions require your work to be in a file supported by Submitify. This means that you may submit your work in the following formats: Microsoft docx, epub, html, LaTeX, markdown, LibreOffice odt, Emacs org-mode, reStructured Text, textile, or twiki.

All images and non-essential formatting will be stripped from your submission.

{% if call.anonymous_submissions %}

Since submissions are anonymous, please make sure that your submission file and cover letter are completely anonymous - remove your name from both!

{% endif %}
{% csrf_token %}
{{ form.title.errors }}
{{ form.cover.errors }}

Markdown permitted

{{ form.original_file.label_tag }}
{% else %}

You are not able to submit to this call. This is usually for one of three reasons:

{% endif %} {% if call.owner == user %}

Send a notification

To all authors

{% if call.status >= 4 %}

To accepted authors

To rejected authors

{% endif %} {% endif %} {% else %}

Please log in to submit

{% endif %}
{% if with_submissions %}

Readers

{% endif %}
{% if user.is_authenticated and call.notification_set.count > 0 %}

Notifications

{% for notification in call.notification_set.all %} {% if user == call.owner or user in notification.targets.all %}
{{ notification.body_rendered|safe }}
{% endif %} {% empty %}

No notifications to show

{% endfor %}
{% endif %} {% if with_submissions %}

Submissions

{% if not call.anonymous_submissions %} {% endif %} {% for submission in call.submission_set.all %} {% if not call.anonymous_submissions %} {% endif %} {% empty %} {% endfor %}
TitleAuthorWords Submitted Status
{{ submission.title }} {% if call.owner == user %}

{{ submission.review_set.count }}/{{ call.reviews_per_submission }} needed reviews • {% with stats=submission.get_review_stats %} {{ stats.accept }}/{{ stats.reject }} • Average rating: {{ stats.average_rating }} {% endwith %}

{% endif %}
{{ submission.owner.username }}{{ submission.wordcount }} {{ submission.ctime|naturaltime }} {{ submission.get_status_display }}
No submissions to list
{% endif %} {% endblock %}