Merge pull request #415 from eReuse/bugfix/4128-prefix-lot-search
put prefix in lots in result of search
This commit is contained in:
commit
f1042b627b
|
@ -14,6 +14,7 @@ ml).
|
||||||
- [changed] #410 change teh top search for advanced search.
|
- [changed] #410 change teh top search for advanced search.
|
||||||
- [fixed] #412 show in snapshots log, type upload correctly.
|
- [fixed] #412 show in snapshots log, type upload correctly.
|
||||||
- [fixed] #413 put order in documents.
|
- [fixed] #413 put order in documents.
|
||||||
|
- [fixed] #415 put prefix of lot in result of search.
|
||||||
|
|
||||||
## [2.4.3] - 2022-11-18
|
## [2.4.3] - 2022-11-18
|
||||||
- [added] #386 add registration module.
|
- [added] #386 add registration module.
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<div class="col-xl-12">
|
<div class="col-xl-12">
|
||||||
|
|
||||||
<div class="card">
|
<div class="card d-none">
|
||||||
<div class="tab-content pt-2">
|
<div class="tab-content pt-2">
|
||||||
<div class="flex mt-4 mb-4">
|
<div class="flex mt-4 mb-4">
|
||||||
<form method="get" class="ms-4">
|
<form method="get" class="ms-4">
|
||||||
|
@ -307,8 +307,8 @@
|
||||||
</a>
|
</a>
|
||||||
{% if dev.lots | length > 0 %}
|
{% if dev.lots | length > 0 %}
|
||||||
<h6 class="d-inline">
|
<h6 class="d-inline">
|
||||||
{% for lot in dev.lots %}
|
{% for lot in dev.get_lots_for_template() %}
|
||||||
<span class="badge rounded-pill bg-light text-dark">{{ lot.name }}</span>
|
<span class="badge rounded-pill bg-light text-dark">{{ lot }}</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</h6>
|
</h6>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Reference in New Issue