Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created August 5, 2019 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/0a5c8980b5c82bd308c90e165159f4ef to your computer and use it in GitHub Desktop.
Save ryantm/0a5c8980b5c82bd308c90e165159f4ef to your computer and use it in GitHub Desktop.
/nix/store/cnzqp5kka224m3lpdrgqa553fadwh9xr-python3.7-django-polymorphic-2.1.2
├── lib
│   └── python3.7
│   └── site-packages
│   ├── django_polymorphic-2.1.2.dist-info
│   │   ├── AUTHORS.rst
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── polymorphic
│   ├── admin
│   │   ├── childadmin.py
│   │   ├── filters.py
│   │   ├── forms.py
│   │   ├── generic.py
│   │   ├── helpers.py
│   │   ├── __init__.py
│   │   ├── inlines.py
│   │   ├── parentadmin.py
│   │   └── __pycache__
│   │   ├── childadmin.cpython-37.pyc
│   │   ├── filters.cpython-37.pyc
│   │   ├── forms.cpython-37.pyc
│   │   ├── generic.cpython-37.pyc
│   │   ├── helpers.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── inlines.cpython-37.pyc
│   │   └── parentadmin.cpython-37.pyc
│   ├── base.py
│   ├── compat.py
│   ├── contrib
│   │   ├── extra_views.py
│   │   ├── guardian.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── extra_views.cpython-37.pyc
│   │   ├── guardian.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   ├── formsets
│   │   ├── generic.py
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── __pycache__
│   │   │   ├── generic.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── models.cpython-37.pyc
│   │   │   └── utils.cpython-37.pyc
│   │   └── utils.py
│   ├── __init__.py
│   ├── managers.py
│   ├── models.py
│   ├── __pycache__
│   │   ├── base.cpython-37.pyc
│   │   ├── compat.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── managers.cpython-37.pyc
│   │   ├── models.cpython-37.pyc
│   │   ├── query.cpython-37.pyc
│   │   ├── query_translate.cpython-37.pyc
│   │   ├── showfields.cpython-37.pyc
│   │   └── utils.cpython-37.pyc
│   ├── query.py
│   ├── query_translate.py
│   ├── showfields.py
│   ├── static
│   │   └── polymorphic
│   │   ├── css
│   │   │   └── polymorphic_inlines.css
│   │   └── js
│   │   └── polymorphic_inlines.js
│   ├── templates
│   │   └── admin
│   │   └── polymorphic
│   │   ├── add_type_form.html
│   │   ├── change_form.html
│   │   ├── delete_confirmation.html
│   │   ├── edit_inline
│   │   │   └── stacked.html
│   │   └── object_history.html
│   ├── templatetags
│   │   ├── __init__.py
│   │   ├── polymorphic_admin_tags.py
│   │   ├── polymorphic_formset_tags.py
│   │   └── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── polymorphic_admin_tags.cpython-37.pyc
│   │   └── polymorphic_formset_tags.cpython-37.pyc
│   ├── tests
│   │   └── migrations
│   │   ├── 0001_initial.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── 0001_initial.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   └── utils.py
└── nix-support
└── propagated-build-inputs
26 directories, 73 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment