Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 12, 2019 12:30
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/e4432c84b61d5f71239fda354a1a0947 to your computer and use it in GitHub Desktop.
Save ryantm/e4432c84b61d5f71239fda354a1a0947 to your computer and use it in GitHub Desktop.
/nix/store/3jfm2a9drmdm285qxlfxsg0jbjbvhzk8-python3.7-django-guardian-1.5.1
├── lib
│   └── python3.7
│   └── site-packages
│   ├── django_guardian-1.5.1.dist-info
│   │   ├── AUTHORS
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── guardian
│   ├── admin.py
│   ├── apps.py
│   ├── backends.py
│   ├── checks.py
│   ├── compat.py
│   ├── conf
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── settings.cpython-37.pyc
│   │   └── settings.py
│   ├── core.py
│   ├── ctypes.py
│   ├── decorators.py
│   ├── exceptions.py
│   ├── forms.py
│   ├── __init__.py
│   ├── locale
│   │   ├── es
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── fr
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── nl
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── pl
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── pt_BR
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── ru
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   └── zh_Hans
│   │   └── LC_MESSAGES
│   │   ├── django.mo
│   │   └── django.po
│   ├── management
│   │   ├── commands
│   │   │   ├── clean_orphan_obj_perms.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── clean_orphan_obj_perms.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   └── __init__.cpython-37.pyc
│   ├── managers.py
│   ├── migrations
│   │   ├── 0001_initial.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── 0001_initial.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   ├── mixins.py
│   ├── models.py
│   ├── __pycache__
│   │   ├── admin.cpython-37.pyc
│   │   ├── apps.cpython-37.pyc
│   │   ├── backends.cpython-37.pyc
│   │   ├── checks.cpython-37.pyc
│   │   ├── compat.cpython-37.pyc
│   │   ├── core.cpython-37.pyc
│   │   ├── ctypes.cpython-37.pyc
│   │   ├── decorators.cpython-37.pyc
│   │   ├── exceptions.cpython-37.pyc
│   │   ├── forms.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── managers.cpython-37.pyc
│   │   ├── mixins.cpython-37.pyc
│   │   ├── models.cpython-37.pyc
│   │   ├── shortcuts.cpython-37.pyc
│   │   └── utils.cpython-37.pyc
│   ├── shortcuts.py
│   ├── static
│   │   └── guardian
│   │   └── img
│   │   ├── icon-no.svg
│   │   └── icon-yes.svg
│   ├── templates
│   │   └── admin
│   │   └── guardian
│   │   ├── contrib
│   │   │   └── grappelli
│   │   │   ├── field.html
│   │   │   ├── obj_perms_manage_group.html
│   │   │   ├── obj_perms_manage.html
│   │   │   └── obj_perms_manage_user.html
│   │   └── model
│   │   ├── change_form.html
│   │   ├── field.html
│   │   ├── obj_perms_manage_group.html
│   │   ├── obj_perms_manage.html
│   │   ├── obj_perms_manage_user.html
│   │   ├── obj_perms_no.html
│   │   └── obj_perms_yes.html
│   ├── templatetags
│   │   ├── guardian_tags.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── guardian_tags.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   ├── testapp
│   │   ├── __init__.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   ├── 0002_logentrywithgroup.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── 0001_initial.cpython-37.pyc
│   │   │   ├── 0002_logentrywithgroup.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── models.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── models.cpython-37.pyc
│   │   │   └── testsettings.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── conf.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── conf.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_admin.cpython-37.pyc
│   │   │   │   ├── test_checks.cpython-37.pyc
│   │   │   │   ├── test_conf.cpython-37.pyc
│   │   │   │   ├── test_core.cpython-37.pyc
│   │   │   │   ├── test_custompkmodel.cpython-37.pyc
│   │   │   │   ├── test_decorators.cpython-37.pyc
│   │   │   │   ├── test_direct_rel.cpython-37.pyc
│   │   │   │   ├── test_forms.cpython-37.pyc
│   │   │   │   ├── test_management.cpython-37.pyc
│   │   │   │   ├── test_managers.cpython-37.pyc
│   │   │   │   ├── test_mixins.cpython-37.pyc
│   │   │   │   ├── test_orphans.cpython-37.pyc
│   │   │   │   ├── test_other.cpython-37.pyc
│   │   │   │   ├── test_shortcuts.cpython-37.pyc
│   │   │   │   ├── test_tags.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   └── urls.cpython-37.pyc
│   │   │   ├── templates
│   │   │   │   ├── 404.html
│   │   │   │   ├── 500.html
│   │   │   │   ├── blank.html
│   │   │   │   ├── dummy403.html
│   │   │   │   ├── dummy404.html
│   │   │   │   └── list.html
│   │   │   ├── test_admin.py
│   │   │   ├── test_checks.py
│   │   │   ├── test_conf.py
│   │   │   ├── test_core.py
│   │   │   ├── test_custompkmodel.py
│   │   │   ├── test_decorators.py
│   │   │   ├── test_direct_rel.py
│   │   │   ├── test_forms.py
│   │   │   ├── test_management.py
│   │   │   ├── test_managers.py
│   │   │   ├── test_mixins.py
│   │   │   ├── test_orphans.py
│   │   │   ├── test_other.py
│   │   │   ├── test_shortcuts.py
│   │   │   ├── test_tags.py
│   │   │   ├── test_utils.py
│   │   │   └── urls.py
│   │   └── testsettings.py
│   └── utils.py
└── nix-support
└── propagated-build-inputs
48 directories, 141 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment