altcomp/dev/: django-userguide-0.1.7 metadata and description

Simple index Newer version available

Django-userguide library

author_email Altcomp <it@altcomp.pl>
classifiers
  • Framework :: Django
  • Programming Language :: Python :: 3
  • Operating System :: OS Independent
description_content_type text/markdown
license_expression MIT
requires_dist
  • Django>=4.2
  • djangorestframework>=3.15
  • django-filter>=25.1
  • djangorestframework-camel-case>=1.4.2
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.7-py3-none-any.whl
Size
35 KB
Type
Python Wheel
Python
3
django_userguide-0.1.7.tar.gz
Size
16 KB
Type
Source

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 = []