├── .gitignore ├── MANIFEST.in ├── README.md ├── grappelli_nested ├── __init__.py ├── admin.py ├── forms.py ├── helpers.py ├── models.py ├── static │ └── grappelli_nested │ │ ├── .DS_Store │ │ ├── css │ │ └── grp_nested_inline.css │ │ └── js │ │ └── grp_nested_inline.js ├── templates │ └── admin │ │ └── edit_inline │ │ ├── stacked.html │ │ └── tabular.html └── views.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/README.md -------------------------------------------------------------------------------- /grappelli_nested/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = (0, 6, 0) 2 | -------------------------------------------------------------------------------- /grappelli_nested/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/admin.py -------------------------------------------------------------------------------- /grappelli_nested/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/forms.py -------------------------------------------------------------------------------- /grappelli_nested/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/helpers.py -------------------------------------------------------------------------------- /grappelli_nested/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/models.py -------------------------------------------------------------------------------- /grappelli_nested/static/grappelli_nested/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/static/grappelli_nested/.DS_Store -------------------------------------------------------------------------------- /grappelli_nested/static/grappelli_nested/css/grp_nested_inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/static/grappelli_nested/css/grp_nested_inline.css -------------------------------------------------------------------------------- /grappelli_nested/static/grappelli_nested/js/grp_nested_inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/static/grappelli_nested/js/grp_nested_inline.js -------------------------------------------------------------------------------- /grappelli_nested/templates/admin/edit_inline/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/templates/admin/edit_inline/stacked.html -------------------------------------------------------------------------------- /grappelli_nested/templates/admin/edit_inline/tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/grappelli_nested/templates/admin/edit_inline/tabular.html -------------------------------------------------------------------------------- /grappelli_nested/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datahub/grappelli-nested-inlines/HEAD/setup.py --------------------------------------------------------------------------------