{% extends "email/email.html" %} {% load i18n %} {% load inventree_extras %} {% block title %} {% trans "Stock is required for the following build order" %}
{% blocktrans with build=build.reference part=part.full_name quantity=build.quantity %}Build order {{ build }} - building {{ quantity }} x {{ part }}{% endblocktrans %}

{% trans "Click on the following link to view this build order" %}: {{ link }}

{% endblock title %} {% block body %} {% trans "The following parts are low on required stock" %} {% trans "Part" %} {% trans "Required Quantity" %} {% trans "Available" %} {% for line in lines %} {{ line.part.full_name }}{% if part.description %} - {{ part.description }}{% endif %} {% decimal line.required %} {% if line.part.units %}{{ line.part.units }}{% endif %} {% decimal line.available %} {% if line.part.units %}{{ line.part.units }}{% endif %} {% endfor %} {% endblock body %} {% block footer_prefix %}

{% blocktrans with part=part.name %}You are receiving this email because you are subscribed to notifications for this part {% endblocktrans %}.

{% endblock footer_prefix %}