mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Merge pull request #453 from SchrodingersGat/collapsible-sections
Collapsible sections
This commit is contained in:
commit
42eafcb51f
@ -36,9 +36,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% if category and category.children.all|length > 0 %}
|
{% if category and category.children.all|length > 0 %}
|
||||||
{% include "part/subcategories.html" with children=category.children.all collapse_id="children"%}
|
{% include "part/subcategories.html" with children=category.children.all collapse_id="categories" %}
|
||||||
{% elif children|length > 0 %}
|
{% elif children|length > 0 %}
|
||||||
{% include "part/subcategories.html" with children=children %}
|
{% include "part/subcategories.html" with children=children collapse_id="categories" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
@ -65,6 +65,18 @@
|
|||||||
{% block js_ready %}
|
{% block js_ready %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
|
|
||||||
|
if (sessionStorage.getItem("inventree-show-part-categories")) {
|
||||||
|
$("#collapse-item-categories").collapse('show');
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#collapse-item-categories").on('shown.bs.collapse', function() {
|
||||||
|
sessionStorage.setItem('inventree-show-part-categories', 1);
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#collapse-item-categories").on('hidden.bs.collapse', function() {
|
||||||
|
sessionStorage.removeItem('inventree-show-part-categories');
|
||||||
|
});
|
||||||
|
|
||||||
$("#cat-create").click(function() {
|
$("#cat-create").click(function() {
|
||||||
launchModalForm(
|
launchModalForm(
|
||||||
"{% url 'category-create' %}",
|
"{% url 'category-create' %}",
|
||||||
|
@ -54,6 +54,19 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block js_ready %}
|
{% block js_ready %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
|
|
||||||
|
if (sessionStorage.getItem("inventree-show-part-locations")) {
|
||||||
|
$("#collapse-item-locations").collapse('show');
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#collapse-item-locations").on('shown.bs.collapse', function() {
|
||||||
|
sessionStorage.setItem('inventree-show-part-locations', 1);
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#collapse-item-locations").on('hidden.bs.collapse', function() {
|
||||||
|
sessionStorage.removeItem('inventree-show-part-locations');
|
||||||
|
});
|
||||||
|
|
||||||
$('#location-create').click(function () {
|
$('#location-create').click(function () {
|
||||||
launchModalForm("{% url 'stock-location-create' %}",
|
launchModalForm("{% url 'stock-location-create' %}",
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user