Snippet List
This snippets is inspired from [#2995](https://djangosnippets.org/snippets/2995/) but add the following:
* get rid of `singledispatch` so we can use it with python2 without pip installing anything
* streaming capabilities
* the configuration params (header, fields, exclude...) are passed to the action function so we don't pollute the ModelAdmin class
* fix utf8 issue in header
- admin
- export
- csv
- action
- stream
- export-csv
Based on [#2712](../2712/)
"This snippet creates a simple generic export to csv action that you can specify the fields you want exported and the labels used in the header row for each field. It expands on #2020 by using list comprehensions instead of sets so that you also control the order of the fields as well."
The additions here allow you to span foreign keys in the list of field names, and you can also reference callables.
- admin
- generic
- export
- csv
- admin-actions
- export-csv
3 snippets posted so far.