{% 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 }}
When creating a Review reminder you can use the template variables below.
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 %}
When creating a Review reminder you can use the template variables below.