2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-07 15:58:49 +00:00

bolder type for serial numbers

This commit is contained in:
Matthias 2021-07-06 21:10:42 +02:00
parent 84b67e2cc1
commit 9ed2338162

View File

@ -250,11 +250,15 @@
<td> <td>
{% resolve request.path as url_path %} {% resolve request.path as url_path %}
{% if previous %} {% if previous %}
<a class="btn btn-default" aria-label="{% trans 'previous page' %}" href="{% url url_path.url_name previous.id %}">{{ previous.serial }} </a> <a class="btn btn-default" aria-label="{% trans 'previous page' %}" href="{% url url_path.url_name previous.id %}">
<small>{{ previous.serial }}</small>
</a>
{% endif %} {% endif %}
<span class="btn" href="">{{ item.serial }}</span> <span class="btn" href=""><strong>{{ item.serial }}</strong></span>
{% if next %} {% if next %}
<a class="btn btn-default" aria-label="{% trans 'next page' %}" href="{% url url_path.url_name next.id %}"> {{ next.serial }}</a> <a class="btn btn-default text-sm" aria-label="{% trans 'next page' %}" href="{% url url_path.url_name next.id %}">
<small>{{ next.serial }}</small>
</a>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>