altcomp/dev/: django-userguide-0.1.8 metadata and description
Django-userguide library
| author_email | Altcomp <it@altcomp.pl> |
| classifiers |
|
| description_content_type | text/markdown |
| license_expression | MIT |
| metadata_version | 2.4 |
| requires_dist |
|
| requires_python | >=3.10 |
Because this project isn't in the mirror_whitelist,
no releases from root/pypi are included.
| File | Tox results | History |
|---|---|---|
django_userguide-0.1.8-py3-none-any.whl
|
|
|
django_userguide-0.1.8.tar.gz
|
|
django-userguide
Installation
INSTALLED_APPS = [
'userguide',
]
#
# Markdown editor in Django Admin Site
#
X_FRAME_OPTIONS = "SAMEORIGIN"
MDEDITOR_CONFIGS = {
'default': {
'language': 'en',
}
}
Application settings
# Example settings
# Default size of the truncated string length to use in some serializers.
# Please be aware that, if the string exceeds max length, an extra '...' will be concatenated.
USER_GUIDE_STRING_TRUNCATE_LENGTH = 25
# Permission classes to use in view sets.
# It's not required (Default to []).
# Permission classes must be a list of strings to be imported dynamically in BaseViewSet.
USER_GUIDE_PERMISSION_CLASSES = []
# Authentication classes to use in view sets.
# It's not required (Default to []).
# Authentication classes must be a list of strings to be imported dynamically in BaseViewSet.
USER_GUIDE_AUTHENTICATION_CLASSES = []