Skip to content

protonpopsicle/django-cl2csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-cl2csv

cl2csv is a tiny Django app for adding export functionality to the built-in admin list views. Fields can be hidden from export. The name is short for "Change list to Comma Separated Values".

Installation

$ pip install django-cl2csv

Add "cl2csv" to your INSTALLED_APPS setting like this:

	INSTALLED_APPS = (
        ...
        'cl2csv',
    )

Usage

from cl2csv.options import ExportModelAdmin

class DVDAdmin(ExportModelAdmin):
    hide_from_export = ('secret_vote',)

About

Export what you see in the Django admin list view

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages