Merge pull request #2030 from matmair/html-code-smells

Html code smells
This commit is contained in:
Oliver 2021-09-02 08:47:59 +10:00 committed by GitHub
commit c90f9b0447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
44 changed files with 83 additions and 83 deletions

View File

@ -6,7 +6,7 @@
{{ block.super }} {{ block.super }}
<div class='alert alert-block alert-info'> <div class='alert alert-block alert-info'>
<b>{% trans "Automatically Allocate Stock" %}</b><br> <strong>{% trans "Automatically Allocate Stock" %}</strong><br>
{% trans "The following stock items will be allocated to the specified build output" %} {% trans "The following stock items will be allocated to the specified build output" %}
</div> </div>
{% if allocations %} {% if allocations %}
@ -24,7 +24,7 @@
</td> </td>
<td> <td>
{{ item.stock_item.part.full_name }}<br> {{ item.stock_item.part.full_name }}<br>
<i>{{ item.stock_item.part.description }}</i> <em>{{ item.stock_item.part.description }}</em>
</td> </td>
<td>{% decimal item.quantity %}</td> <td>{% decimal item.quantity %}</td>
<td>{{ item.stock_item.location }}</td> <td>{{ item.stock_item.location }}</td>

View File

@ -9,7 +9,7 @@
</div> </div>
{% else %} {% else %}
<div class='alert alert-block alert-danger'> <div class='alert alert-block alert-danger'>
<b>{% trans "Build Order is incomplete" %}</b><br> <strong>{% trans "Build Order is incomplete" %}</strong><br>
<ul> <ul>
{% if build.incomplete_count > 0 %} {% if build.incomplete_count > 0 %}
<li>{% trans "Incompleted build outputs remain" %}</li> <li>{% trans "Incompleted build outputs remain" %}</li>

View File

@ -8,7 +8,7 @@
</p> </p>
{% if output %} {% if output %}
<p> <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> </p>
{% endif %} {% endif %}
</div> </div>

View File

@ -40,7 +40,7 @@
{% if build.take_from %} {% if build.take_from %}
<a href="{% url 'stock-location-detail' build.take_from.id %}">{{ build.take_from }}</a>{% include "clip.html"%} <a href="{% url 'stock-location-detail' build.take_from.id %}">{{ build.take_from }}</a>{% include "clip.html"%}
{% else %} {% else %}
<i>{% trans "Stock can be taken from any available location." %}</i> <em>{% trans "Stock can be taken from any available location." %}</em>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>
@ -53,7 +53,7 @@
{{ build.destination }} {{ build.destination }}
</a>{% include "clip.html"%} </a>{% include "clip.html"%}
{% else %} {% else %}
<i>{% trans "Destination location not specified" %}</i> <em>{% trans "Destination location not specified" %}</em>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>
@ -127,7 +127,7 @@
{{ build.target_date }}{% if build.is_overdue %} <span class='fas fa-calendar-times icon-red'></span>{% endif %} {{ build.target_date }}{% if build.is_overdue %} <span class='fas fa-calendar-times icon-red'></span>{% endif %}
</td> </td>
{% else %} {% else %}
<td><i>{% trans "No target date set" %}</i></td> <td><em>{% trans "No target date set" %}</em></td>
{% endif %} {% endif %}
</tr> </tr>
<tr> <tr>
@ -136,7 +136,7 @@
{% if build.completion_date %} {% if build.completion_date %}
<td>{{ build.completion_date }}{% if build.completed_by %}<span class='badge'>{{ build.completed_by }}</span>{% endif %}</td> <td>{{ build.completion_date }}{% if build.completed_by %}<span class='badge'>{{ build.completed_by }}</span>{% endif %}</td>
{% else %} {% else %}
<td><i>{% trans "Build not complete" %}</i></td> <td><em>{% trans "Build not complete" %}</em></td>
{% endif %} {% endif %}
</tr> </tr>
</table> </table>
@ -222,7 +222,7 @@
</div> </div>
{% else %} {% else %}
<div class='alert alert-block alert-info'> <div class='alert alert-block alert-info'>
<b>{% trans "Create a new build output" %}</b><br> <strong>{% trans "Create a new build output" %}</strong><br>
{% trans "No incomplete build outputs remain." %}<br> {% trans "No incomplete build outputs remain." %}<br>
{% trans "Create a new build output using the button above" %} {% trans "Create a new build output using the button above" %}
</div> </div>

View File

@ -6,9 +6,9 @@
{{ block.super }} {{ block.super }}
<!-- <!--
<p> <p>
<b>{{ name }}</b><br> <strong>{{ name }}</strong><br>
{{ description }}<br> {{ description }}<br>
<i>{% trans "Current value" %}: {{ value }}</i> <em>{% trans "Current value" %}: {{ value }}</em>
</p> </p>
--> -->
{% endblock %} {% endblock %}

View File

@ -78,7 +78,7 @@
{% if company.currency %} {% if company.currency %}
{{ company.currency }} {{ company.currency }}
{% else %} {% else %}
<i>{% trans "Uses default currency" %}</i> <em>{% trans "Uses default currency" %}</em>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>

View File

@ -225,7 +225,7 @@ $("#multi-parameter-delete").click(function() {
<ul>`; <ul>`;
selections.forEach(function(item) { selections.forEach(function(item) {
text += `<li>${item.name} - <i>${item.value}</i></li>`; text += `<li>${item.name} - <em>${item.value}</em></li>`;
}); });
text += ` text += `

View File

@ -57,7 +57,7 @@
{% for duplicate in duplicates %} {% for duplicate in duplicates %}
{% if duplicate == col.value %} {% if duplicate == col.value %}
<div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'> <div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'>
<b>{% trans "Duplicate selection" %}</b> <strong>{% trans "Duplicate selection" %}</strong>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@ -38,7 +38,7 @@
<tr id='part_row_{{ part.id }}'> <tr id='part_row_{{ part.id }}'>
<td> <td>
{% include "hover_image.html" with image=part.image hover=False %} {% include "hover_image.html" with image=part.image hover=False %}
{{ part.full_name }} <small><i>{{ part.description }}</i></small> {{ part.full_name }} <small><em>{{ part.description }}</em></small>
</td> </td>
<td> <td>
<button class='btn btn-default btn-create' onClick='newSupplierPartFromOrderWizard()' id='new_supplier_part_{{ part.id }}' part='{{ part.pk }}' title='{% trans "Create new supplier part" %}' type='button'> <button class='btn btn-default btn-create' onClick='newSupplierPartFromOrderWizard()' id='new_supplier_part_{{ part.id }}' part='{{ part.pk }}' title='{% trans "Create new supplier part" %}' type='button'>
@ -62,7 +62,7 @@
</select> </select>
</div> </div>
{% if not part.order_supplier %} {% if not part.order_supplier %}
<span class='help-inline'>{% blocktrans with name=part.name %}Select a supplier for <i>{{name}}</i>{% endblocktrans %}</span> <span class='help-inline'>{% blocktrans with name=part.name %}Select a supplier for <em>{{name}}</em>{% endblocktrans %}</span>
{% endif %} {% endif %}
</div> </div>
</td> </td>

View File

@ -5,7 +5,7 @@
{% block form %} {% block form %}
{% blocktrans with desc=order.description %}Receive outstanding parts for <b>{{order}}</b> - <i>{{desc}}</i>{% endblocktrans %} {% blocktrans with desc=order.description %}Receive outstanding parts for <strong>{{order}}</strong> - <em>{{desc}}</em>{% endblocktrans %}
<form method='post' action='' class='js-modal-form' enctype='multipart/form-data'> <form method='post' action='' class='js-modal-form' enctype='multipart/form-data'>
{% csrf_token %} {% csrf_token %}

View File

@ -22,7 +22,7 @@
{% endif %} {% endif %}
<div class='alert alert-block alert-info'> <div class='alert alert-block alert-info'>
<b>{% trans "Sales Order" %} {{ order.reference }} - {{ order.customer.name }}</b> <strong>{% trans "Sales Order" %} {{ order.reference }} - {{ order.customer.name }}</strong>
<br> <br>
{% trans "Shipping this order means that the order will no longer be editable." %} {% trans "Shipping this order means that the order will no longer be editable." %}
</div> </div>

View File

@ -6,9 +6,9 @@
<div class='alert alert-block alert-warning'> <div class='alert alert-block alert-warning'>
{% trans "This action will unallocate the following stock from the Sales Order" %}: {% trans "This action will unallocate the following stock from the Sales Order" %}:
<br> <br>
<b> <strong>
{% decimal allocation.get_allocated %} x {{ allocation.line.part.full_name }} {% decimal allocation.get_allocated %} x {{ allocation.line.part.full_name }}
{% if allocation.item.location %} ({{ allocation.get_location }}){% endif %} {% if allocation.item.location %} ({{ allocation.get_location }}){% endif %}
</b> </strong>
</div> </div>
{% endblock %} {% endblock %}

View File

@ -11,13 +11,13 @@
<div class='alert alert-block alert-info'> <div class='alert alert-block alert-info'>
{% else %} {% else %}
<div class='alert alert-block alert-danger'> <div class='alert alert-block alert-danger'>
{% blocktrans with part=part.full_name %}The BOM for <i>{{ part }}</i> has changed, and must be validated.<br>{% endblocktrans %} {% blocktrans with part=part.full_name %}The BOM for <em>{{ part }}</em> has changed, and must be validated.<br>{% endblocktrans %}
{% endif %} {% endif %}
{% blocktrans with part=part.full_name checker=part.bom_checked_by check_date=part.bom_checked_date %}The BOM for <i>{{ part }}</i> was last checked by {{ checker }} on {{ check_date }}{% endblocktrans %} {% blocktrans with part=part.full_name checker=part.bom_checked_by check_date=part.bom_checked_date %}The BOM for <em>{{ part }}</em> was last checked by {{ checker }} on {{ check_date }}{% endblocktrans %}
</div> </div>
{% else %} {% else %}
<div class='alert alert-danger alert-block'> <div class='alert alert-danger alert-block'>
<b>{% blocktrans with part=part.full_name %}The BOM for <i>{{ part }}</i> has not been validated.{% endblocktrans %}</b> <strong>{% blocktrans with part=part.full_name %}The BOM for <em>{{ part }}</em> has not been validated.{% endblocktrans %}</strong>
</div> </div>
{% endif %} {% endif %}

View File

@ -9,7 +9,7 @@
{% if part.has_bom %} {% if part.has_bom %}
<div class='alert alert-block alert-danger'> <div class='alert alert-block alert-danger'>
<b>{% trans "Warning" %}</b><br> <strong>{% trans "Warning" %}</strong><br>
{% trans "This part already has a Bill of Materials" %}<br> {% trans "This part already has a Bill of Materials" %}<br>
</div> </div>
{% endif %} {% endif %}

View File

@ -57,7 +57,7 @@
{% for duplicate in duplicates %} {% for duplicate in duplicates %}
{% if duplicate == col.value %} {% if duplicate == col.value %}
<div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'> <div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'>
<b>{% trans "Duplicate selection" %}</b> <strong>{% trans "Duplicate selection" %}</strong>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@ -43,9 +43,9 @@
{% block form_alert %} {% block form_alert %}
<div class='alert alert-info alert-block'> <div class='alert alert-info alert-block'>
<b>{% trans "Requirements for BOM upload" %}:</b> <strong>{% trans "Requirements for BOM upload" %}:</strong>
<ul> <ul>
<li>{% trans "The BOM file must contain the required named columns as provided in the " %} <b><a href="/part/bom_template/">{% trans "BOM Upload Template" %}</a></b></li> <li>{% trans "The BOM file must contain the required named columns as provided in the " %} <strong><a href="/part/bom_template/">{% trans "BOM Upload Template" %}</a></strong></li>
<li>{% trans "Each part must already exist in the database" %}</li> <li>{% trans "Each part must already exist in the database" %}</li>
</ul> </ul>
</div> </div>

View File

@ -3,7 +3,7 @@
{% load i18n %} {% load i18n %}
{% block pre_form_content %} {% block pre_form_content %}
{% blocktrans with part.full_name as part %}Confirm that the Bill of Materials (BOM) is valid for:<br><i>{{ part }}</i>{% endblocktrans %} {% blocktrans with part.full_name as part %}Confirm that the Bill of Materials (BOM) is valid for:<br><em>{{ part }}</em>{% endblocktrans %}
<div class='alert alert-warning alert-block'> <div class='alert alert-warning alert-block'>
{% trans 'This will validate each line in the BOM.' %} {% trans 'This will validate each line in the BOM.' %}

View File

@ -8,13 +8,13 @@
{% if matches %} {% if matches %}
<div class='alert alert-block alert-warning'> <div class='alert alert-block alert-warning'>
<b>{% trans "Possible Matching Parts" %}</b> <strong>{% trans "Possible Matching Parts" %}</strong>
<p>{% trans "The new part may be a duplicate of these existing parts" %}:</p> <p>{% trans "The new part may be a duplicate of these existing parts" %}:</p>
<ul class='list-group'> <ul class='list-group'>
{% for match in matches %} {% for match in matches %}
<li class='list-group-item list-group-item-condensed'> <li class='list-group-item list-group-item-condensed'>
{% decimal match.ratio as match_per %} {% decimal match.ratio as match_per %}
{% blocktrans with full_name=match.part.full_name desc=match.part.description %}{{full_name}} - <i>{{desc}}</i> ({{match_per}}% match){% endblocktrans %} {% blocktrans with full_name=match.part.full_name desc=match.part.description %}{{full_name}} - <em>{{desc}}</em> ({{match_per}}% match){% endblocktrans %}
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -18,7 +18,7 @@
<div class='panel-content'> <div class='panel-content'>
{% if part.is_template %} {% if part.is_template %}
<div class='alert alert-info alert-block'> <div class='alert alert-info alert-block'>
{% blocktrans with full_name=part.full_name%}Showing stock for all variants of <i>{{full_name}}</i>{% endblocktrans %} {% blocktrans with full_name=part.full_name%}Showing stock for all variants of <em>{{full_name}}</em>{% endblocktrans %}
</div> </div>
{% endif %} {% endif %}
{% include "stock_table.html" %} {% include "stock_table.html" %}

View File

@ -50,7 +50,7 @@
{% for duplicate in duplicates %} {% for duplicate in duplicates %}
{% if duplicate == col.value %} {% if duplicate == col.value %}
<div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'> <div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'>
<b>{% trans "Duplicate selection" %}</b> <strong>{% trans "Duplicate selection" %}</strong>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@ -57,7 +57,7 @@
{% for duplicate in duplicates %} {% for duplicate in duplicates %}
{% if duplicate == col.value %} {% if duplicate == col.value %}
<div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'> <div class='alert alert-danger alert-block text-center' role='alert' style='padding:2px; margin-top:6px; margin-bottom:2px'>
<b>{% trans "Duplicate selection" %}</b> <strong>{% trans "Duplicate selection" %}</strong>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@ -37,7 +37,7 @@
{% else %} {% else %}
<tr> <tr>
<td colspan='3'> <td colspan='3'>
<span class='warning-msg'><i>{% trans 'No supplier pricing available' %}</i></span> <span class='warning-msg'><em>{% trans 'No supplier pricing available' %}</em></span>
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
@ -78,14 +78,14 @@
{% if part.has_complete_bom_pricing == False %} {% if part.has_complete_bom_pricing == False %}
<tr> <tr>
<td colspan='3'> <td colspan='3'>
<span class='warning-msg'><i>{% trans 'Note: BOM pricing is incomplete for this part' %}</i></span> <span class='warning-msg'><em>{% trans 'Note: BOM pricing is incomplete for this part' %}</em></span>
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
{% else %} {% else %}
<tr> <tr>
<td colspan='3'> <td colspan='3'>
<span class='warning-msg'><i>{% trans 'No BOM pricing available' %}</i></span> <span class='warning-msg'><em>{% trans 'No BOM pricing available' %}</em></span>
</td> </td>
</tr> </tr>
{% endif %} {% endif %}

View File

@ -4,7 +4,7 @@
{% block pre_form_content %} {% block pre_form_content %}
<div class='alert alert-block alert-danger'> <div class='alert alert-block alert-danger'>
{% blocktrans with full_name=part.full_name %}Are you sure you want to delete part '<b>{{full_name}}</b>'?{% endblocktrans %} {% blocktrans with full_name=part.full_name %}Are you sure you want to delete part '<strong>{{full_name}}</strong>'?{% endblocktrans %}
</div> </div>
{% if part.used_in_count %} {% if part.used_in_count %}

View File

@ -18,7 +18,7 @@
{% if part.supplier_count > 0 %} {% if part.supplier_count > 0 %}
{% if min_total_buy_price %} {% if min_total_buy_price %}
<tr> <tr>
<td><b>{% trans 'Supplier Pricing' %}</b> <td><strong>{% trans 'Supplier Pricing' %}</strong>
<a href="#supplier-cost" title='{% trans "Show supplier cost" %}'><span class="fas fa-search-dollar"></span></a> <a href="#supplier-cost" title='{% trans "Show supplier cost" %}'><span class="fas fa-search-dollar"></span></a>
<a href="#purchase-price" title='{% trans "Show purchase price" %}'><span class="fas fa-chart-bar"></span></a> <a href="#purchase-price" title='{% trans "Show purchase price" %}'><span class="fas fa-chart-bar"></span></a>
</td> </td>
@ -37,7 +37,7 @@
{% else %} {% else %}
<tr> <tr>
<td colspan='4'> <td colspan='4'>
<span class='warning-msg'><i>{% trans 'No supplier pricing available' %}</i></span> <span class='warning-msg'><em>{% trans 'No supplier pricing available' %}</em></span>
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
@ -46,7 +46,7 @@
{% if part.bom_count > 0 %} {% if part.bom_count > 0 %}
{% if min_total_bom_price %} {% if min_total_bom_price %}
<tr> <tr>
<td><b>{% trans 'BOM Pricing' %}</b> <td><strong>{% trans 'BOM Pricing' %}</strong>
<a href="#bom-cost" title='{% trans "Show BOM cost" %}'><span class="fas fa-search-dollar"></span></a> <a href="#bom-cost" title='{% trans "Show BOM cost" %}'><span class="fas fa-search-dollar"></span></a>
</td> </td>
<td>{% trans 'Unit Cost' %}</td> <td>{% trans 'Unit Cost' %}</td>
@ -83,14 +83,14 @@
{% if part.has_complete_bom_pricing == False %} {% if part.has_complete_bom_pricing == False %}
<tr> <tr>
<td colspan='4'> <td colspan='4'>
<span class='warning-msg'><i>{% trans 'Note: BOM pricing is incomplete for this part' %}</i></span> <span class='warning-msg'><em>{% trans 'Note: BOM pricing is incomplete for this part' %}</em></span>
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
{% else %} {% else %}
<tr> <tr>
<td colspan='4'> <td colspan='4'>
<span class='warning-msg'><i>{% trans 'No BOM pricing available' %}</i></span> <span class='warning-msg'><em>{% trans 'No BOM pricing available' %}</em></span>
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
@ -99,7 +99,7 @@
{% if show_internal_price and roles.sales_order.view %} {% if show_internal_price and roles.sales_order.view %}
{% if total_internal_part_price %} {% if total_internal_part_price %}
<tr> <tr>
<td><b>{% trans 'Internal Price' %}</b></td> <td><strong>{% trans 'Internal Price' %}</strong></td>
<td>{% trans 'Unit Cost' %}</td> <td>{% trans 'Unit Cost' %}</td>
<td colspan='2'>{% include "price.html" with price=unit_internal_part_price %}</td> <td colspan='2'>{% include "price.html" with price=unit_internal_part_price %}</td>
</tr> </tr>
@ -113,7 +113,7 @@
{% if total_part_price %} {% if total_part_price %}
<tr> <tr>
<td><b>{% trans 'Sale Price' %}</b> <td><strong>{% trans 'Sale Price' %}</strong>
<a href="#sale-cost" title='{% trans "Show sale cost" %}'><span class="fas fa-search-dollar"></span></a> <a href="#sale-cost" title='{% trans "Show sale cost" %}'><span class="fas fa-search-dollar"></span></a>
<a href="#sale-price" title='{% trans "Show sale price" %}'><span class="fas fa-chart-bar"></span></a> <a href="#sale-price" title='{% trans "Show sale price" %}'><span class="fas fa-chart-bar"></span></a>
</td> </td>
@ -179,7 +179,7 @@
</div> </div>
<div class='panel-content'> <div class='panel-content'>
<h4>{% trans 'Stock Pricing' %} <h4>{% trans 'Stock Pricing' %}
<i class="fas fa-info-circle" title="Shows the purchase prices of stock for this part.&#10;The Supplier Unit Cost is the current purchase price for that supplier part."></i> <i class="fas fa-info-circle" title="Shows the purchase prices of stock for this part.&#10;The Supplier Unit Cost is the current purchase price for that supplier part."></em>
</h4> </h4>
{% if price_history|length > 0 %} {% if price_history|length > 0 %}
<div style="max-width: 99%; min-height: 300px"> <div style="max-width: 99%; min-height: 300px">

View File

@ -6,8 +6,8 @@
{{ block.super }} {{ block.super }}
<div class='alert alert-info alert-block'> <div class='alert alert-info alert-block'>
<b>{% trans "Create new part variant" %}</b><br> <strong>{% trans "Create new part variant" %}</strong><br>
{% blocktrans with full_name=part.full_name %}Create a new variant of template <i>'{{full_name}}'</i>.{% endblocktrans %} {% blocktrans with full_name=part.full_name %}Create a new variant of template <em>'{{full_name}}'</em>.{% endblocktrans %}
</div> </div>
{% endblock %} {% endblock %}

View File

@ -128,7 +128,7 @@ content: "v{{report_revision}} - {{ date.isoformat }}";
{% if build.target_date %} {% if build.target_date %}
{{ build.target_date }} {{ build.target_date }}
{% else %} {% else %}
<i>Not specified</i> <em>Not specified</em>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>
@ -138,7 +138,7 @@ content: "v{{report_revision}} - {{ date.isoformat }}";
{% if build.sales_order %} {% if build.sales_order %}
{% internal_link build.sales_order.get_absolute_url build.sales_order %} {% internal_link build.sales_order.get_absolute_url build.sales_order %}
{% else %} {% else %}
<i>Not specified</i> <em>Not specified</em>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>

View File

@ -68,8 +68,8 @@ content: "{% trans 'Stock Item Test Report' %}";
{{ part.full_name }} {{ part.full_name }}
</h2> </h2>
<p>{{ part.description }}</p> <p>{{ part.description }}</p>
<p><i>{{ stock_item.location }}</i></p> <p><em>{{ stock_item.location }}</em></p>
<p><i>Stock Item ID: {{ stock_item.pk }}</i></p> <p><em>Stock Item ID: {{ stock_item.pk }}</em></p>
</div> </div>
<div class='img-right'> <div class='img-right'>
<img class='part-img' src="{% part_image part %}"> <img class='part-img' src="{% part_image part %}">

View File

@ -182,7 +182,7 @@
{% if item.build %} {% if item.build %}
<a href="{% url 'build-detail' item.build.id %}"> <a href="{% url 'build-detail' item.build.id %}">
<b>{{ item.build }}</b> <strong>{{ item.build }}</strong>
</a> </a>
{% endif %} {% endif %}
@ -300,7 +300,7 @@
{% if item.location %} {% if item.location %}
<td><a href="{% url 'stock-location-detail' item.location.id %}">{{ item.location.name }}</a></td> <td><a href="{% url 'stock-location-detail' item.location.id %}">{{ item.location.name }}</a></td>
{% else %} {% else %}
<td><i>{% trans "No location set" %}</i></td> <td><em>{% trans "No location set" %}</em></td>
{% endif %} {% endif %}
</tr> </tr>
{% endif %} {% endif %}
@ -367,7 +367,7 @@
{% if item.supplier_part.manufacturer_part.manufacturer %} {% if item.supplier_part.manufacturer_part.manufacturer %}
<td><a href="{% url 'company-detail' item.supplier_part.manufacturer_part.manufacturer.id %}">{{ item.supplier_part.manufacturer_part.manufacturer.name }}</a></td> <td><a href="{% url 'company-detail' item.supplier_part.manufacturer_part.manufacturer.id %}">{{ item.supplier_part.manufacturer_part.manufacturer.name }}</a></td>
{% else %} {% else %}
<td><i>{% trans "No manufacturer set" %}</i></td> <td><em>{% trans "No manufacturer set" %}</em></td>
{% endif %} {% endif %}
</tr> </tr>
@ -414,7 +414,7 @@
{% if item.stocktake_date %} {% if item.stocktake_date %}
<td>{{ item.stocktake_date }} <span class='badge'>{{ item.stocktake_user }}</span></td> <td>{{ item.stocktake_date }} <span class='badge'>{{ item.stocktake_user }}</span></td>
{% else %} {% else %}
<td><i>{% trans "No stocktake performed" %}</i></td> <td><em>{% trans "No stocktake performed" %}</em></td>
{% endif %} {% endif %}
</tr> </tr>
<tr> <tr>

View File

@ -9,7 +9,7 @@
{% trans "Are you sure you want to delete this stock item?" %} {% trans "Are you sure you want to delete this stock item?" %}
<br> <br>
{% decimal item.quantity as qty %} {% decimal item.quantity as qty %}
{% blocktrans with full_name=item.part.full_name %}This will remove <b>{{qty}}</b> units of <b>{{full_name}}</b> from stock.{% endblocktrans %} {% blocktrans with full_name=item.part.full_name %}This will remove <strong>{{qty}}</strong> units of <strong>{{full_name}}</strong> from stock.{% endblocktrans %}
</div> </div>
{% endblock %} {% endblock %}

View File

@ -3,7 +3,7 @@
<div class="navigation"> <div class="navigation">
<nav aria-label="breadcrumb"> <nav aria-label="breadcrumb">
<ol class="breadcrumb"> <ol class="breadcrumb">
<li><a href='#' title='Toggle Stock Tree' id='toggle-stock-tree'><b><span class='fas fa-stream'></span></b></a></li> <li><a href='#' title='Toggle Stock Tree' id='toggle-stock-tree'><strong><span class='fas fa-stream'></span></strong></a></li>
<li class="breadcrumb-item{% if location is None %} active" aria-current="page{% endif %}"><a href="/stock/">{% trans "Stock" %}</a></li> <li class="breadcrumb-item{% if location is None %} active" aria-current="page{% endif %}"><a href="/stock/">{% trans "Stock" %}</a></li>
{% if location %} {% if location %}
{% for path_item in location.parentpath %} {% for path_item in location.parentpath %}

View File

@ -20,7 +20,7 @@ the top level 'Stock' location.
<ul class='list-group'> <ul class='list-group'>
{% for loc in location.children.all %} {% for loc in location.children.all %}
<li class='list-group-item'><b>{{ loc.name }}</b> - <i>{{ loc.description}}</i></li> <li class='list-group-item'><strong>{{ loc.name }}</strong> - <em>{{ loc.description}}</em></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
@ -36,7 +36,7 @@ If this location is deleted, these items will be moved to the top level 'Stock'
<ul class='list-group'> <ul class='list-group'>
{% for item in location.stock_items.all %} {% for item in location.stock_items.all %}
<li class='list-group-item'><b>{{ item.part.full_name }}</b> - <i>{{ item.part.description }}</i><span class='badge'>{% decimal item.quantity %}</span></li> <li class='list-group-item'><strong>{{ item.part.full_name }}</strong> - <em>{{ item.part.description }}</em><span class='badge'>{% decimal item.quantity %}</span></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}

View File

@ -24,7 +24,7 @@
{% for item in stock_items %} {% for item in stock_items %}
<tr id='stock-row-{{ item.id }}' class='error'> <tr id='stock-row-{{ item.id }}' class='error'>
<td>{% include "hover_image.html" with image=item.part.image hover=True %} <td>{% include "hover_image.html" with image=item.part.image hover=True %}
{{ item.part.full_name }} <small><i>{{ item.part.description }}</i></small></td> {{ item.part.full_name }} <small><em>{{ item.part.description }}</em></small></td>
<td>{{ item.location.pathstring }}</td> <td>{{ item.location.pathstring }}</td>
<td>{% decimal item.quantity %}</td> <td>{% decimal item.quantity %}</td>
<td> <td>

View File

@ -4,13 +4,13 @@
{% block pre_form_content %} {% block pre_form_content %}
<div class='alert alert-block alert-info'> <div class='alert alert-block alert-info'>
<b>{% trans "Convert Stock Item" %}</b><br> <strong>{% trans "Convert Stock Item" %}</strong><br>
{% blocktrans with part=item.part %}This stock item is current an instance of <i>{{part}}</i>{% endblocktrans %}<br> {% blocktrans with part=item.part %}This stock item is current an instance of <em>{{part}}</em>{% endblocktrans %}<br>
{% trans "It can be converted to one of the part variants listed below." %} {% trans "It can be converted to one of the part variants listed below." %}
</div> </div>
<div class='alert alert-block alert-warning'> <div class='alert alert-block alert-warning'>
<b>{% trans "Warning" %}</b> <strong>{% trans "Warning" %}</strong>
{% trans "This action cannot be easily undone" %} {% trans "This action cannot be easily undone" %}
</div> </div>

View File

@ -34,7 +34,7 @@
function addHeaderTitle(title) { function addHeaderTitle(title) {
// Add a header block to the action list // Add a header block to the action list
$("#action-item-list").append( $("#action-item-list").append(
`<li class='list-group-item'><b>${title}</b></li>` `<li class='list-group-item'><strong>${title}</strong></li>`
); );
} }

View File

@ -21,7 +21,7 @@
{% if query %} {% if query %}
{% else %} {% else %}
<div id='empty-search-query'> <div id='empty-search-query'>
<h4><i>{% trans "Enter a search query" %}</i></h4> <h4><em>{% trans "Enter a search query" %}</em></h4>
</div> </div>
{% endif %} {% endif %}
@ -47,7 +47,7 @@
function addItemTitle(title) { function addItemTitle(title) {
// Add header block to the results list // Add header block to the results list
$('#search-item-list').append( $('#search-item-list').append(
`<li class='list-group-item'><b>${title}</b></li>` `<li class='list-group-item'><strong>${title}</strong></li>`
); );
} }
@ -268,7 +268,7 @@
var text = "{% trans "Shipped to customer" %}"; var text = "{% trans "Shipped to customer" %}";
return renderLink(text, `/company/${row.customer}/assigned-stock/`); return renderLink(text, `/company/${row.customer}/assigned-stock/`);
} else { } else {
return '<i>{% trans "No stock location set" %}</i>'; return '<em>{% trans "No stock location set" %}</em>';
} }
} }
} }

View File

@ -40,7 +40,7 @@
{% if rates_updated %} {% if rates_updated %}
{{ rates_updated }} {{ rates_updated }}
{% else %} {% else %}
<i>{% trans "Never" %}</i> <em>{% trans "Never" %}</em>
{% endif %} {% endif %}
<form action='{% url "settings-currencies-refresh" %}' method='post'> <form action='{% url "settings-currencies-refresh" %}' method='post'>
<div id='refresh-rates-form'> <div id='refresh-rates-form'>

View File

@ -9,7 +9,7 @@
</li> </li>
<li class='list-group-item'> <li class='list-group-item'>
<b>{% trans "User Settings" %}</b> <strong>{% trans "User Settings" %}</strong>
</li> </li>
<li class='list-group-item' title='{% trans "Account" %}'> <li class='list-group-item' title='{% trans "Account" %}'>
@ -53,7 +53,7 @@
{% if user.is_staff %} {% if user.is_staff %}
<li class='list-group-item'> <li class='list-group-item'>
<b>{% trans "InvenTree Settings" %}</b> <strong>{% trans "InvenTree Settings" %}</strong>
</li> </li>
<li class='list-group-item' title='{% trans "Server" %}'> <li class='list-group-item' title='{% trans "Server" %}'>

View File

@ -13,7 +13,7 @@
<span class='fas {{ icon }}'></span> <span class='fas {{ icon }}'></span>
{% endif %} {% endif %}
</td> </td>
<td><b>{% trans setting.name %}</b></td> <td><strong>{% trans setting.name %}</strong></td>
<td> <td>
{% if setting.is_bool %} {% if setting.is_bool %}
<div> <div>
@ -21,15 +21,15 @@
</div> </div>
{% else %} {% else %}
<div id='setting-{{ setting.pk }}'> <div id='setting-{{ setting.pk }}'>
<b> <strong>
<span id='setting-value-{{ setting.key.upper }}' fieldname='{{ setting.key.upper }}'> <span id='setting-value-{{ setting.key.upper }}' fieldname='{{ setting.key.upper }}'>
{% if setting.value %} {% if setting.value %}
{{ setting.value }} {{ setting.value }}
{% else %} {% else %}
<i>{% trans "No value set" %}</i> <em>{% trans "No value set" %}</em>
{% endif %} {% endif %}
</span> </span>
</b> </strong>
{{ setting.units }} {{ setting.units }}
</div> </div>
{% endif %} {% endif %}

View File

@ -87,7 +87,7 @@
<td> <td>
<span style="display: none;" id="about-copy-text">{% include "version.html" %}</span> <span style="display: none;" id="about-copy-text">{% include "version.html" %}</span>
<span class="float-right"> <span class="float-right">
<button class="btn clip-btn-version" type="button" data-toggle='tooltip' title='{% trans "copy to clipboard" %}'><i class="fas fa-copy"></i> {% trans "copy version information" %}</button> <button class="btn clip-btn-version" type="button" data-toggle='tooltip' title='{% trans "copy to clipboard" %}'><i class="fas fa-copy"></em> {% trans "copy version information" %}</button>
</span> </span>
</td> </td>
</tr> </tr>

View File

@ -1,5 +1,5 @@
{% load i18n %} {% load i18n %}
<span class="float-right"> <span class="float-right">
<button class="btn clip-btn" type="button" data-toggle='tooltip' title='{% trans "copy to clipboard" %}'><i class="fas fa-copy"></i></button> <button class="btn clip-btn" type="button" data-toggle='tooltip' title='{% trans "copy to clipboard" %}'><i class="fas fa-copy"></em></button>
</span> </span>

View File

@ -14,7 +14,7 @@
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span> <span aria-hidden="true">&times;</span>
</button> </button>
<h3 id='modal-title'><i>Form Title Here</i></h3> <h3 id='modal-title'><em>Form Title Here</em></h3>
</div> </div>
<div class='modal-form-content-wrapper'> <div class='modal-form-content-wrapper'>
<div class='alert alert-block alert-danger' id='form-validation-warning' style='display: none;'> <div class='alert alert-block alert-danger' id='form-validation-warning' style='display: none;'>
@ -40,7 +40,7 @@
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span> <span aria-hidden="true">&times;</span>
</button> </button>
<h3 id='modal-title'><i>Form Title Here</i></h3> <h3 id='modal-title'><em>Form Title Here</em></h3>
</div> </div>
<div class='modal-form-content-wrapper'> <div class='modal-form-content-wrapper'>
<div class='alert alert-block alert-danger' id='form-validation-warning' style="display: none;"> <div class='alert alert-block alert-danger' id='form-validation-warning' style="display: none;">

View File

@ -80,7 +80,7 @@
<span class='fas fa-info-circle icon-green'></span> <span class='fas fa-info-circle icon-green'></span>
{% endif %} {% endif %}
{% endif %} {% endif %}
<span class="fas fa-user"></span> <b>{{ user.get_username }}</b></a> <span class="fas fa-user"></span> <strong>{{ user.get_username }}</strong></a>
<ul class='dropdown-menu'> <ul class='dropdown-menu'>
{% if user.is_authenticated %} {% if user.is_authenticated %}
{% if user.is_staff %} {% if user.is_staff %}

View File

@ -80,7 +80,7 @@
{% if form.errors %} {% if form.errors %}
<div class='login-error'> <div class='login-error'>
<b>{% trans "Username / password combination is incorrect" %}</b> <strong>{% trans "Username / password combination is incorrect" %}</strong>
</div> </div>
{% endif %} {% endif %}

View File

@ -6,7 +6,7 @@
<col width='25'> <col width='25'>
<tr> <tr>
<td colspan="3"><b>{% trans "Server" %}</b></td> <td colspan="3"><strong>{% trans "Server" %}</strong></td>
</tr> </tr>
<tr> <tr>
<td><span class='fas fa-server'></span></td> <td><span class='fas fa-server'></span></td>
@ -77,7 +77,7 @@
{% endif %} {% endif %}
<tr> <tr>
<td colspan='3'><b>{% trans "Parts" %}</b></td> <td colspan='3'><strong>{% trans "Parts" %}</strong></td>
</tr> </tr>
<tr> <tr>
<td><span class='fas fa-sitemap'></span></td> <td><span class='fas fa-sitemap'></span></td>
@ -90,7 +90,7 @@
<td>{{ part_count }}</td> <td>{{ part_count }}</td>
</tr> </tr>
<tr> <tr>
<td colspan="3"><b>{% trans "Stock Items" %}</b></td> <td colspan="3"><strong>{% trans "Stock Items" %}</strong></td>
</tr> </tr>
<tr> <tr>
<td><span class='fas fa-map-marker-alt'></span></td> <td><span class='fas fa-map-marker-alt'></span></td>