Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.79 KB | None | 0 0
  1. /nix/store/3jfm2a9drmdm285qxlfxsg0jbjbvhzk8-python3.7-django-guardian-1.5.1
  2. ├── lib
  3. │   └── python3.7
  4. │   └── site-packages
  5. │   ├── django_guardian-1.5.1.dist-info
  6. │   │   ├── AUTHORS
  7. │   │   ├── INSTALLER
  8. │   │   ├── LICENSE
  9. │   │   ├── METADATA
  10. │   │   ├── RECORD
  11. │   │   ├── top_level.txt
  12. │   │   └── WHEEL
  13. │   └── guardian
  14. │   ├── admin.py
  15. │   ├── apps.py
  16. │   ├── backends.py
  17. │   ├── checks.py
  18. │   ├── compat.py
  19. │   ├── conf
  20. │   │   ├── __init__.py
  21. │   │   ├── __pycache__
  22. │   │   │   ├── __init__.cpython-37.pyc
  23. │   │   │   └── settings.cpython-37.pyc
  24. │   │   └── settings.py
  25. │   ├── core.py
  26. │   ├── ctypes.py
  27. │   ├── decorators.py
  28. │   ├── exceptions.py
  29. │   ├── forms.py
  30. │   ├── __init__.py
  31. │   ├── locale
  32. │   │   ├── es
  33. │   │   │   └── LC_MESSAGES
  34. │   │   │   ├── django.mo
  35. │   │   │   └── django.po
  36. │   │   ├── fr
  37. │   │   │   └── LC_MESSAGES
  38. │   │   │   ├── django.mo
  39. │   │   │   └── django.po
  40. │   │   ├── nl
  41. │   │   │   └── LC_MESSAGES
  42. │   │   │   ├── django.mo
  43. │   │   │   └── django.po
  44. │   │   ├── pl
  45. │   │   │   └── LC_MESSAGES
  46. │   │   │   ├── django.mo
  47. │   │   │   └── django.po
  48. │   │   ├── pt_BR
  49. │   │   │   └── LC_MESSAGES
  50. │   │   │   ├── django.mo
  51. │   │   │   └── django.po
  52. │   │   ├── ru
  53. │   │   │   └── LC_MESSAGES
  54. │   │   │   ├── django.mo
  55. │   │   │   └── django.po
  56. │   │   └── zh_Hans
  57. │   │   └── LC_MESSAGES
  58. │   │   ├── django.mo
  59. │   │   └── django.po
  60. │   ├── management
  61. │   │   ├── commands
  62. │   │   │   ├── clean_orphan_obj_perms.py
  63. │   │   │   ├── __init__.py
  64. │   │   │   └── __pycache__
  65. │   │   │   ├── clean_orphan_obj_perms.cpython-37.pyc
  66. │   │   │   └── __init__.cpython-37.pyc
  67. │   │   ├── __init__.py
  68. │   │   └── __pycache__
  69. │   │   └── __init__.cpython-37.pyc
  70. │   ├── managers.py
  71. │   ├── migrations
  72. │   │   ├── 0001_initial.py
  73. │   │   ├── __init__.py
  74. │   │   └── __pycache__
  75. │   │   ├── 0001_initial.cpython-37.pyc
  76. │   │   └── __init__.cpython-37.pyc
  77. │   ├── mixins.py
  78. │   ├── models.py
  79. │   ├── __pycache__
  80. │   │   ├── admin.cpython-37.pyc
  81. │   │   ├── apps.cpython-37.pyc
  82. │   │   ├── backends.cpython-37.pyc
  83. │   │   ├── checks.cpython-37.pyc
  84. │   │   ├── compat.cpython-37.pyc
  85. │   │   ├── core.cpython-37.pyc
  86. │   │   ├── ctypes.cpython-37.pyc
  87. │   │   ├── decorators.cpython-37.pyc
  88. │   │   ├── exceptions.cpython-37.pyc
  89. │   │   ├── forms.cpython-37.pyc
  90. │   │   ├── __init__.cpython-37.pyc
  91. │   │   ├── managers.cpython-37.pyc
  92. │   │   ├── mixins.cpython-37.pyc
  93. │   │   ├── models.cpython-37.pyc
  94. │   │   ├── shortcuts.cpython-37.pyc
  95. │   │   └── utils.cpython-37.pyc
  96. │   ├── shortcuts.py
  97. │   ├── static
  98. │   │   └── guardian
  99. │   │   └── img
  100. │   │   ├── icon-no.svg
  101. │   │   └── icon-yes.svg
  102. │   ├── templates
  103. │   │   └── admin
  104. │   │   └── guardian
  105. │   │   ├── contrib
  106. │   │   │   └── grappelli
  107. │   │   │   ├── field.html
  108. │   │   │   ├── obj_perms_manage_group.html
  109. │   │   │   ├── obj_perms_manage.html
  110. │   │   │   └── obj_perms_manage_user.html
  111. │   │   └── model
  112. │   │   ├── change_form.html
  113. │   │   ├── field.html
  114. │   │   ├── obj_perms_manage_group.html
  115. │   │   ├── obj_perms_manage.html
  116. │   │   ├── obj_perms_manage_user.html
  117. │   │   ├── obj_perms_no.html
  118. │   │   └── obj_perms_yes.html
  119. │   ├── templatetags
  120. │   │   ├── guardian_tags.py
  121. │   │   ├── __init__.py
  122. │   │   └── __pycache__
  123. │   │   ├── guardian_tags.cpython-37.pyc
  124. │   │   └── __init__.cpython-37.pyc
  125. │   ├── testapp
  126. │   │   ├── __init__.py
  127. │   │   ├── migrations
  128. │   │   │   ├── 0001_initial.py
  129. │   │   │   ├── 0002_logentrywithgroup.py
  130. │   │   │   ├── __init__.py
  131. │   │   │   └── __pycache__
  132. │   │   │   ├── 0001_initial.cpython-37.pyc
  133. │   │   │   ├── 0002_logentrywithgroup.cpython-37.pyc
  134. │   │   │   └── __init__.cpython-37.pyc
  135. │   │   ├── models.py
  136. │   │   ├── __pycache__
  137. │   │   │   ├── __init__.cpython-37.pyc
  138. │   │   │   ├── models.cpython-37.pyc
  139. │   │   │   └── testsettings.cpython-37.pyc
  140. │   │   ├── tests
  141. │   │   │   ├── conf.py
  142. │   │   │   ├── __init__.py
  143. │   │   │   ├── __pycache__
  144. │   │   │   │   ├── conf.cpython-37.pyc
  145. │   │   │   │   ├── __init__.cpython-37.pyc
  146. │   │   │   │   ├── test_admin.cpython-37.pyc
  147. │   │   │   │   ├── test_checks.cpython-37.pyc
  148. │   │   │   │   ├── test_conf.cpython-37.pyc
  149. │   │   │   │   ├── test_core.cpython-37.pyc
  150. │   │   │   │   ├── test_custompkmodel.cpython-37.pyc
  151. │   │   │   │   ├── test_decorators.cpython-37.pyc
  152. │   │   │   │   ├── test_direct_rel.cpython-37.pyc
  153. │   │   │   │   ├── test_forms.cpython-37.pyc
  154. │   │   │   │   ├── test_management.cpython-37.pyc
  155. │   │   │   │   ├── test_managers.cpython-37.pyc
  156. │   │   │   │   ├── test_mixins.cpython-37.pyc
  157. │   │   │   │   ├── test_orphans.cpython-37.pyc
  158. │   │   │   │   ├── test_other.cpython-37.pyc
  159. │   │   │   │   ├── test_shortcuts.cpython-37.pyc
  160. │   │   │   │   ├── test_tags.cpython-37.pyc
  161. │   │   │   │   ├── test_utils.cpython-37.pyc
  162. │   │   │   │   └── urls.cpython-37.pyc
  163. │   │   │   ├── templates
  164. │   │   │   │   ├── 404.html
  165. │   │   │   │   ├── 500.html
  166. │   │   │   │   ├── blank.html
  167. │   │   │   │   ├── dummy403.html
  168. │   │   │   │   ├── dummy404.html
  169. │   │   │   │   └── list.html
  170. │   │   │   ├── test_admin.py
  171. │   │   │   ├── test_checks.py
  172. │   │   │   ├── test_conf.py
  173. │   │   │   ├── test_core.py
  174. │   │   │   ├── test_custompkmodel.py
  175. │   │   │   ├── test_decorators.py
  176. │   │   │   ├── test_direct_rel.py
  177. │   │   │   ├── test_forms.py
  178. │   │   │   ├── test_management.py
  179. │   │   │   ├── test_managers.py
  180. │   │   │   ├── test_mixins.py
  181. │   │   │   ├── test_orphans.py
  182. │   │   │   ├── test_other.py
  183. │   │   │   ├── test_shortcuts.py
  184. │   │   │   ├── test_tags.py
  185. │   │   │   ├── test_utils.py
  186. │   │   │   └── urls.py
  187. │   │   └── testsettings.py
  188. │   └── utils.py
  189. └── nix-support
  190. └── propagated-build-inputs
  191.  
  192. 48 directories, 141 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement