Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 13:43
Show Gist options
  • Save ryantm/dec2c99e0d7dc8fae83a67d4962a4df2 to your computer and use it in GitHub Desktop.
Save ryantm/dec2c99e0d7dc8fae83a67d4962a4df2 to your computer and use it in GitHub Desktop.
/nix/store/nl459ylm46cdwjvalpzi6g1bl81dbid9-python3.6-django-polymorphic-2.0.3
├── lib
│   └── python3.6
│   └── site-packages
│   ├── django_polymorphic-2.0.3.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-36.pyc
│   │   ├── filters.cpython-36.pyc
│   │   ├── forms.cpython-36.pyc
│   │   ├── generic.cpython-36.pyc
│   │   ├── helpers.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── inlines.cpython-36.pyc
│   │   └── parentadmin.cpython-36.pyc
│   ├── base.py
│   ├── contrib
│   │   ├── extra_views.py
│   │   ├── guardian.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── extra_views.cpython-36.pyc
│   │   ├── guardian.cpython-36.pyc
│   │   └── __init__.cpython-36.pyc
│   ├── formsets
│   │   ├── generic.py
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── __pycache__
│   │   │   ├── generic.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── models.cpython-36.pyc
│   │   │   └── utils.cpython-36.pyc
│   │   └── utils.py
│   ├── __init__.py
│   ├── managers.py
│   ├── models.py
│   ├── __pycache__
│   │   ├── base.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── managers.cpython-36.pyc
│   │   ├── models.cpython-36.pyc
│   │   ├── query.cpython-36.pyc
│   │   ├── query_translate.cpython-36.pyc
│   │   ├── showfields.cpython-36.pyc
│   │   └── utils.cpython-36.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-36.pyc
│   │   ├── polymorphic_admin_tags.cpython-36.pyc
│   │   └── polymorphic_formset_tags.cpython-36.pyc
│   ├── tests
│   │   └── migrations
│   │   ├── 0001_initial.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── 0001_initial.cpython-36.pyc
│   │   └── __init__.cpython-36.pyc
│   └── utils.py
└── nix-support
└── propagated-build-inputs
26 directories, 71 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment