2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

replace i html tags

This commit is contained in:
Matthias
2021-09-02 00:18:47 +02:00
parent 6a420fd95c
commit 0ebc45e834
27 changed files with 45 additions and 45 deletions

View File

@ -24,7 +24,7 @@
</td>
<td>
{{ item.stock_item.part.full_name }}<br>
<i>{{ item.stock_item.part.description }}</i>
<em>{{ item.stock_item.part.description }}</em>
</td>
<td>{% decimal item.quantity %}</td>
<td>{{ item.stock_item.location }}</td>

View File

@ -8,7 +8,7 @@
</p>
{% if output %}
<p>
{% blocktrans %}The allocated stock will be installed into the following build output:<br><i>{{output}}</i>{% endblocktrans %}
{% blocktrans %}The allocated stock will be installed into the following build output:<br><em>{{output}}</em>{% endblocktrans %}
</p>
{% endif %}
</div>

View File

@ -40,7 +40,7 @@
{% if build.take_from %}
<a href="{% url 'stock-location-detail' build.take_from.id %}">{{ build.take_from }}</a>{% include "clip.html"%}
{% else %}
<i>{% trans "Stock can be taken from any available location." %}</i>
<em>{% trans "Stock can be taken from any available location." %}</em>
{% endif %}
</td>
</tr>
@ -53,7 +53,7 @@
{{ build.destination }}
</a>{% include "clip.html"%}
{% else %}
<i>{% trans "Destination location not specified" %}</i>
<em>{% trans "Destination location not specified" %}</em>
{% endif %}
</td>
</tr>
@ -127,7 +127,7 @@
{{ build.target_date }}{% if build.is_overdue %} <span class='fas fa-calendar-times icon-red'></span>{% endif %}
</td>
{% else %}
<td><i>{% trans "No target date set" %}</i></td>
<td><em>{% trans "No target date set" %}</em></td>
{% endif %}
</tr>
<tr>
@ -136,7 +136,7 @@
{% if build.completion_date %}
<td>{{ build.completion_date }}{% if build.completed_by %}<span class='badge'>{{ build.completed_by }}</span>{% endif %}</td>
{% else %}
<td><i>{% trans "Build not complete" %}</i></td>
<td><em>{% trans "Build not complete" %}</em></td>
{% endif %}
</tr>
</table>