2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 19:20:55 +00:00

Facilitated translation for low stock notification subject

moved the message/content of low stock notification to html template
Facilitated translation in low stock notification html template file
This commit is contained in:
rocheparadox
2021-10-30 20:32:10 +05:30
parent e0cd02ee60
commit 6ec2801fce
2 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,6 @@
<p>{{ message }}</p>
{% load i18n %}
<p>{% trans "Hi, " %} {{ part_name }} {% trans "is low on stock. Kindly do the needful." %}</p>
<table style="border-collapse:collapse; width: 80%;margin-left: 10%; font-size: 1rem">
@ -19,8 +21,9 @@
</tr>
<tr style="background-color: aliceblue;height: 4rem;">
<td colspan="3" style="padding-top:1rem; text-align: center">You are receiving this mail because you have starred the part {{ part_name }} in
Inventree application</td>
<td colspan="3" style="padding-top:1rem; text-align: center">{% trans "You are receiving this mail because you have starred the part " %} {{ part_name }}
{% trans "Inventree application" %}
</td>
</tr>
</table>