Skip to content

Instantly share code, notes, and snippets.

@dzerrenner
dzerrenner / fields.py
Last active December 30, 2022 15:21 — forked from danni/fields.py
Multi Choice Django Array Field with Checkbox Widget
from django import forms
from django.contrib.postgres.fields import ArrayField
class ChoiceArrayField(ArrayField):
"""
A field that allows us to store an array of choices.
Uses Django 1.9's postgres ArrayField
and a MultipleChoiceField for its formfield.
@dzerrenner
dzerrenner / README.md
Last active December 11, 2018 12:01 — forked from cassus/admin.py
Django admin action as row button

Summary

This enables simple action buttons per entity in the admin list_view. This was adapted for Django 2.1 and is a bit more general than the original it was forked from.

Usage