{% for comm in communication %}
  • {{ comm.timestamp|date:'d F Y' }}
  • {{ comm.timestamp|date:'d F Y G:i' }} {{ comm.timestamp|date:'G:i' }}
    {% if comm.comtype == 'RtoE' %} From {{ comm.referee.user.first_name }} {{ comm.referee.user.last_name }} to {{ reader_is_editor|yesno:'you,Editor-in-charge' }} {% elif comm.comtype == 'EtoR' %} From {{ reader_is_editor|yesno:'you,Editor-in-charge' }} to {% if comm.referee %} {{ comm.referee.user.first_name }} {{ comm.referee.user.last_name }} {% else %} referee (?) {% endif %} {% elif comm.comtype == 'AtoE' %} From {% if comm.referee %} {{ comm.referee.user.first_name }} {{ comm.referee.user.last_name }} {% else %} author (?) {% endif %} to {{ reader_is_editor|yesno:'you,Editor-in-charge' }} {% elif comm.comtype == 'EtoA' %} From {{ reader_is_editor|yesno:'you,Editor-in-charge' }} to {% if comm.referee %} {{ comm.referee.user.first_name }} {{ comm.referee.user.last_name }} {% else %} author (?) {% endif %} {% elif comm.comtype == 'StoE' %} From Editorial Administration to {{ reader_is_editor|yesno:'you,Editor-in-charge' }} {% elif comm.comtype == 'EtoS' %} From {{ reader_is_editor|yesno:'you,Editor-in-charge' }} to Editorial Administration {% endif %}

    {{ comm.text|linebreaksbr }}

  • {% empty %}
  • There have been no communications.
  • {% endfor %}