A simple django app to import admin inline data from CSV
Project description
Inline csv importer is a simple Django app to import csv data in admin inlines.
Quick start
Add inline_csv_importer to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'inline_csv_importer', ]
Include the mixin in your ModelAdmin class and define csv_inline:
class AwardAdmin(UploadCSVAdminMixin, admin.ModelAdmin): csv_inline = ( ( 'Person import', { 'fields': ('date', 'name', 'extra',), 'inline': AwardPersonInline, 'help_text': ( 'CSV File should be in this format without headings: ' '<br> name, date, extra information.' ) } ), )
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-inline-csv-importer-0.1.3.tar.gz
.
File metadata
- Download URL: django-inline-csv-importer-0.1.3.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 775c5f5a276fab3b51a1156fef24f1edbd332fd2de37ad71339169b27104feb0 |
|
MD5 | 1beec283336cd4b09887f0dc002d0411 |
|
BLAKE2b-256 | e0c0d774801e2e4575a22c78c454e8ad2e0ffb7f929d91af2f1132bca7055922 |