mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-23 05:08:32 +00:00
added method get_cr_connect_wrapper to render our new html email template. This takes the email text generated from the task element documentation as the email_body.
11 lines
248 B
HTML
11 lines
248 B
HTML
{% extends "mail_main_template.html" %}
|
|
{% block content %}
|
|
<div>
|
|
{{ email_body | safe }}
|
|
</div>
|
|
{% endblock %}
|
|
{% block footer %}
|
|
{{ super() }}
|
|
<span>Ramp-Up Toolkit Configurator - University of Virginia</span>
|
|
{% endblock %}}
|