
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
django-array-field-select-multiple
Advanced tools
A replacement for Django's ArrayField with a multiple select form field.
This is a fork of the original code written by Silver Logic, available here.
A replacement for Django's ArrayField with a multiple select form field.
Please note that this selector makes sense only if the underlying base_field is using choices.
pip install django-array-field-select-multiple
Replace all instances of your Django's ArrayField
model field with the new
ArrayField
. No functionality will be changed, except for the form field.
from django.db import models
from array_field_select.fields import ArrayField
class Student(models.Model):
YEAR_IN_SCHOOL_CHOICES = (
('FR', 'Freshman'),
('SO', 'Sophomore'),
('JR', 'Junior'),
('SR', 'Senior'),
)
years_in_school = ArrayField(
models.CharField(max_length=2, choices=YEAR_IN_SCHOOL_CHOICES)
)
FAQs
A replacement for Django's ArrayField with a multiple select form field.
We found that django-array-field-select-multiple demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.