You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

acdh-django-browsing

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

acdh-django-browsing - pypi Package Compare versions

Comparing version
3.1
to
3.2
+3
-2
acdh_django_browsing.egg-info/PKG-INFO

@@ -1,4 +0,4 @@

Metadata-Version: 2.1
Metadata-Version: 2.2
Name: acdh-django-browsing
Version: 3.1
Version: 3.2
Summary: Django-App providing some useful things to create browsing views

@@ -11,2 +11,3 @@ Author-email: Peter Andorfer <peter.andorfer@oeaw.ac.at>

License-File: LICENSE.txt
Requires-Dist: crispy-bootstrap5
Requires-Dist: django-crispy-forms

@@ -13,0 +14,0 @@ Requires-Dist: django-filter

+1
-0

@@ -0,1 +1,2 @@

crispy-bootstrap5
django-crispy-forms

@@ -2,0 +3,0 @@ django-filter

@@ -30,4 +30,2 @@ LICENSE.txt

browsing/templates/browsing/partials/pagination.html
browsing/templates/browsing/partials/table.html
browsing/templates/browsing/tags/class_definition.html
browsing/templates/browsing/tags/column_selector.html
browsing/templates/browsing/partials/table.html
include LICENSE
include README.rst
include README.md
recursive-include browsing/templates/browsing *
recursive-include browsing/static/browsing *

@@ -1,4 +0,4 @@

Metadata-Version: 2.1
Metadata-Version: 2.2
Name: acdh-django-browsing
Version: 3.1
Version: 3.2
Summary: Django-App providing some useful things to create browsing views

@@ -11,2 +11,3 @@ Author-email: Peter Andorfer <peter.andorfer@oeaw.ac.at>

License-File: LICENSE.txt
Requires-Dist: crispy-bootstrap5
Requires-Dist: django-crispy-forms

@@ -13,0 +14,0 @@ Requires-Dist: django-filter

@@ -7,3 +7,3 @@ [build-system]

name = "acdh-django-browsing"
version = "3.1"
version = "3.2"
description = "Django-App providing some useful things to create browsing views"

@@ -18,2 +18,3 @@ readme = "README.md"

dependencies = [
"crispy-bootstrap5",
"django-crispy-forms",

@@ -20,0 +21,0 @@ "django-filter",

<abbr title="{{ docstring }}">{{ class_name }}</abbr>
{% if togglable_colums %}
<select class="selectpicker" multiple data-selected-text-format="count > 2" name="columns" id="column_selector">
{% for key, value in togglable_colums.items %}
{% if key == 'merge' and user.is_authenticated and enable_merge %}
<option value="{{ key }}">{{ value }}</option>
{% elif key == 'merge' and not user.is_authenticated %}
{% elif key != 'merge' %}
<option value="{{ key }}">{{ value }}</option>
{% endif %}
{% endfor %}
</select>
<script>
$('#column_selector').on('loaded.bs.select', function (e) {
var url = new URL(window.location.href);
var columns = url.searchParams.getAll("columns");
$('#column_selector').selectpicker('val', columns);
});
</script>
{% else %}
{% endif %}