diff --git a/comments/models.py b/comments/models.py index 346f878e2f821b4a7fa02680eecee8ef481191e5..d442cd2ed93b7e9ce016981824f241ac944080cd 100644 --- a/comments/models.py +++ b/comments/models.py @@ -178,7 +178,7 @@ class Comment(models.Model): context = Context() if self.is_author_reply: output += 'Author ' - output += ' <a href="/contributor/{{ author_id }}">{{ first_name }}{{ last_name }}</a> on ' + output += ' <a href="/contributor/{{ author_id }}">{{ first_name }} {{ last_name }}</a> on ' context['author_id'] = self.author.id context['first_name'] = self.author.user.first_name context['last_name'] = self.author.user.last_name diff --git a/journals/templates/journals/scipost_physics_accepted.html b/journals/templates/journals/scipost_physics_accepted.html index 518a3558088fc082a34052d2e49934adfde4216a..b1bc07695bd1b3ef8a5a0cd7982545b8c990b5c3 100644 --- a/journals/templates/journals/scipost_physics_accepted.html +++ b/journals/templates/journals/scipost_physics_accepted.html @@ -1,6 +1,6 @@ {% extends 'scipost/base.html' %} -{% block pagetitle %}: About SciPost Physics{% endblock pagetitle %} +{% block pagetitle %}: SciPost Physics: accepted{% endblock pagetitle %} {% block bodysup %} diff --git a/submissions/templates/submissions/pool.html b/submissions/templates/submissions/pool.html index 64077183fb1b95d1988be20ffc0da46c4d0de556..7fad0534709f4011e7fffba94876b2fb96534b01 100644 --- a/submissions/templates/submissions/pool.html +++ b/submissions/templates/submissions/pool.html @@ -85,6 +85,14 @@ $(document).ready(function(){ </p> </li> </ul> + {% if rec.remark_set %} + <h4>Remarks:</h4> + <ul> + {% for rem in rec.remark_set.all %} + <li>{{ rem }}</li> + {% endfor %} + </ul> + {% endif %} <h4>Actions:</h4> <ul> <li>To fix the College decision and follow the Editorial Recommendation as is: <a href="{% url 'submissions:fix_College_decision' rec_id=rec.id %}">click here</a></li>