fnp
/
fnpdjango.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
0.4.4: Django 3.0 support, actions.export_as_csv_action added.
[fnpdjango.git]
/
tests
/
admin.py
1
from django.contrib import admin
2
from . import models
3
from fnpdjango import actions
4
5
6
class SomeModelAdmin(admin.ModelAdmin):
7
actions = [
8
actions.export_as_csv_action("CSV")
9
]
10
11
12
admin.site.register(models.SomeModel, SomeModelAdmin)
13