{% extends "admin/core/base.html" %} {% load foundation %} {% block title %}Create Reminder Template{% endblock title %} {% block title-section %}Create Reminder Template{% endblock %} {% block title-sub %}Allows you to add a template for use with this reminder{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • Cron
  • Create Reminder Template
  • {% endblock %} {% block body %}
    {% csrf_token %}

    Template Variables for Review Assignments

    When creating a Review reminder you can use the template variables below.

    • review_assignment (this is the top level variable for a review request)
      • reviewer
        • full_name
        • first_name
        • middle_name
        • last_name
        • email
        • username
        • affiliation
      • date_due
      • date_requested
      • editor
        • full_name
        • first_name
        • middle_name
        • last_name
        • email
        • username
        • affiliation
      • access_code
    • article
      • title
      • abstract
      • language
      • section
        • name
      • license
        • name
        • url
      • date_submitted
      • projected_issue
        • display_title

    So if I wanted to display the editors full name in the Review Request template I would add the following placeholder:

    {% verbatim %}{{ review_assignment.editor.full_name }}{% endverbatim %}

    And if I wanted to display the due date I could use:

    {% verbatim %}{{ review_assignment.date_due }}{% endverbatim %}

    If I wanted to display the title of the issue this article is projected to be in I can use:

    {% verbatim %}{{ article.projected_issue.display_title }}{% endverbatim %}

    Template Variables for Revision Requests

    When creating a Review reminder you can use the template variables below.

    • revision (this is the top level variable for a review request)
      • article
        • title
        • abstract
        • language
        • section
          • name
        • license
          • name
          • url
        • date_submitted
        • projected_issue
          • display_title
      • editor
        • full_name
        • first_name
        • middle_name
        • last_name
        • email
        • username
        • affiliation
      • date_requested
      • date_due
    {% endblock %} {% block js %} {% include "admin/elements/jqte.html" %} {% endblock %}