SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 40cf107a authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Add minimal_nr_of_reports to journal.

parent 99999982
No related branches found
No related tags found
No related merge requests found
# Generated by Django 2.1.8 on 2019-10-05 14:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('journals', '0083_auto_20191005_1142'),
]
operations = [
migrations.AddField(
model_name='journal',
name='minimal_nr_of_reports',
field=models.PositiveSmallIntegerField(default=1, help_text='Minimal number of substantial Reports required before an acceptance motion can be formulated'),
),
]
...@@ -45,6 +45,10 @@ class Journal(models.Model): ...@@ -45,6 +45,10 @@ class Journal(models.Model):
scope = models.TextField(default='[To be filled in; you can use markup]') scope = models.TextField(default='[To be filled in; you can use markup]')
content = models.TextField(default='[To be filled in; you can use markup]') content = models.TextField(default='[To be filled in; you can use markup]')
acceptance_criteria = models.TextField(default='[To be filled in; you can use markup]') acceptance_criteria = models.TextField(default='[To be filled in; you can use markup]')
minimal_nr_of_reports = models.PositiveSmallIntegerField(
help_text=('Minimal number of substantial Reports required '
'before an acceptance motion can be formulated'),
default=1)
has_DOAJ_Seal = models.BooleanField(default=False) has_DOAJ_Seal = models.BooleanField(default=False)
......
...@@ -46,18 +46,21 @@ ...@@ -46,18 +46,21 @@
Scope Scope
</h2> </h2>
{{ journal.scope|automarkup }} {{ journal.scope|automarkup }}
<p> {% if "multidiscip" not in journal.discipline %}
The scope includes (but is not limited to): <br><br>
<ul> <p>
{% for discipline in subject_areas %} The scope includes (but is not limited to):
{% if discipline.0 == journal.get_discipline_display %} <ul>
{% for area in discipline.1 %} {% for discipline in subject_areas %}
<li>{{ area.1 }}</li> {% if discipline.0 == journal.get_discipline_display %}
{% endfor %} {% for area in discipline.1 %}
{% endif %} <li>{{ area.1 }}</li>
{% endfor %} {% endfor %}
</ul> {% endif %}
</p> {% endfor %}
</ul>
</p>
{% endif %}
<h2 class="highlight" id="content"> <h2 class="highlight" id="content">
Content Content
...@@ -69,12 +72,14 @@ ...@@ -69,12 +72,14 @@
</h2> </h2>
{{ journal.acceptance_criteria|automarkup }} {{ journal.acceptance_criteria|automarkup }}
<h2 class="highlight" id="sub_and_ed"> <h2 class="highlight" id="sub_and_ed">
Submission and Editorial Process Submission and Editorial Process
</h2> </h2>
<p>Authors should follow the <a href="{% url 'journal:authoring' doi_label=journal.doi_label %}">authoring guidelines</a> to ensure seamless processing of their manuscript. The <a href="{% url 'journals:journals_terms_and_conditions' %}">SciPost Journals Terms and Conditions</a> apply to all Submissions to SciPost Physics.</p> <p>Authors should follow the <a href="{% url 'journal:authoring' doi_label=journal.doi_label %}">authoring guidelines</a> to ensure seamless processing of their manuscript. The <a href="{% url 'journals:journals_terms_and_conditions' %}">SciPost Journals Terms and Conditions</a> apply to all Submissions to SciPost Physics.</p>
<p>All incoming Submissions are thoroughly checked for plagiarism, and follow the peer-witnessed refereeing procedures outlined in <a href="{% url 'submissions:sub_and_ref_procedure' %}">Submission and Refereeing procedure</a>.</p> <p>All incoming Submissions are thoroughly checked for plagiarism, and follow the peer-witnessed refereeing procedures outlined in <a href="{% url 'submissions:sub_and_ref_procedure' %}">Submission and Refereeing procedure</a>.</p>
{% if journal.minimal_nr_of_reports > 0 %}
<p><strong>Minimal number of reports</strong>: at least {{ journal.minimal_nr_of_reports }} substantial report{{ journal.minimal_nr_of_reports|pluralize }} must have been received; all points raised must have been addressed either in resubmissions or in author replies before a recommendation for publication can be formulated.</p>
{% endif %}
<p>All publication decisions are taken by the <a href="{% url 'colleges:colleges' %}">Editorial College ({{ journal.get_discipline_display }})</a>, following the rules set out in the <a href="{% url 'scipost:EdCol_by-laws' %}">Editorial College by-laws</a>.</p> <p>All publication decisions are taken by the <a href="{% url 'colleges:colleges' %}">Editorial College ({{ journal.get_discipline_display }})</a>, following the rules set out in the <a href="{% url 'scipost:EdCol_by-laws' %}">Editorial College by-laws</a>.</p>
<p>Accepted submissions benefit from our top-quality production process, and from our <a href="{% url 'news:news' %}#news_51" target="_blank">industry-leading metadata handling facilities</a>.</p> <p>Accepted submissions benefit from our top-quality production process, and from our <a href="{% url 'news:news' %}#news_51" target="_blank">industry-leading metadata handling facilities</a>.</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment