forked from django-guardian/django-guardian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
78 lines (75 loc) · 2.18 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
site_name: Django Guardian
site_description: django-guardian - per object permissions for Django - Django Guardian
site_url: !ENV READTHEDOCS_CANONICAL_URL
repo_url: https://github.com/django-guardian/django-guardian
edit_uri: /blob/main/docs/
plugins:
- privacy:
- search:
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_root_heading: true
show_root_full_path: false
theme:
features:
- content.code.copy
name: material
logo: assets/logo.svg
favicon: assets/favicon.ico
palette:
- scheme: slate
primary: blue-grey
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: blue-grey
toggle:
icon: material/brightness-7
name: Switch to dark mode
# https://squidfunk.github.io/mkdocs-material/customization/
custom_dir: docs/overrides
extra_javascript:
- javascript/readthedocs.js
extra_css:
- css/readthedocs.css
nav:
- Home: index.md
- Installation: installation.md
- Configuration: configuration.md
- User Guide:
- Example Project: userguide/examples.md
- Assign Object Permissions: userguide/assign.md
- Caveats: userguide/caveats.md
- Checks Object Permissions: userguide/checks.md
- Performance Tuning: userguide/performance.md
- Remove Object Permissions: userguide/remove.md
- Custom User Model: userguide/custom-user-model.md
- Custom Group Model: userguide/custom-group-model.md
- Admin Integration: userguide/admin-integration.md
- Contributing:
- Overview: develop/overview.md
- Testing: develop/testing.md
- API Reference:
- Admin: api/admin.md
- Backends: api/backends.md
- Core: api/core.md
- Decorators: api/decorators.md
- Forms: api/forms.md
- Management Commands: api/management.md
- Managers: api/managers.md
- Mixins: api/mixins.md
- Models: api/models.md
- Shortcuts: api/shortcuts.md
- Template Tags: api/templatetags.md
- Utilities: api/utils.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
- pymdownx.superfences
watch:
- guardian