Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Mixin for Django's admin objects to enhance searching by limiting searchable fields
Admin Search Plus is a AdminMixin for Django that limits searches to specific fields which greatly enhances performance when working on large datasets.
$ pip install admin-search-plus
Or through github:
$ pip install -e git://github.com/Lenders-Cooperative/admin-search-plus#egg=admin-search-plus
$ python -m build
$ pip install admin_search_plus.whl
Add admin_search_plus
to your INSTALLED_APPS
before django.contrib.admin
:
INSTALLED_APPS = [
'app_to_be_overrided',
...
'admin_search_plus',
...
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
NOTE: To override a template, the app should be listed before admin_search_plus
In admin.py
import AdminSearchPlusMixin
to add search functions to ModelAdmin
.
from admin_search_plus import AdminSearchPlusMixin
class YourModelAdmin(AdminSearchPlusMixin, admin.ModelAdmin):
admin_search_plus = True
show_full_result_count = False
show_result_count = False
admin.site.register(YourModel, YourModelAdmin)
FAQs
Mixin for Django's admin objects to enhance searching by limiting searchable fields
We found that admin-search-plus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.