mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 05:48:47 +00:00
12 lines
263 B
HTML
12 lines
263 B
HTML
{% extends "email/email.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load inventree_extras %}
|
|
|
|
{% block title %}
|
|
{{ message }}
|
|
{% if link %}
|
|
<p>{% trans "Click on the following link to view this order" %}: <a href='{{ link }}'>{{ link }}</a></p>
|
|
{% endif %}
|
|
{% endblock title %}
|