Merge pull request #1713 from strikaco/helpview

Implements Help views
This commit is contained in:
Griatch 2018-10-28 09:24:37 +01:00 committed by GitHub
commit cf86467557
11 changed files with 1032 additions and 57 deletions

View file

@ -13,6 +13,7 @@ always be sure of what you have changed and what is default behaviour.
"""
from builtins import range
from django.contrib.messages import constants as messages
from django.urls import reverse_lazy
import os
@ -829,6 +830,12 @@ AUTH_USERNAME_VALIDATORS = [
# Use a custom test runner that just tests Evennia-specific apps.
TEST_RUNNER = 'evennia.server.tests.EvenniaTestSuiteRunner'
# Messages and Bootstrap don't classify events the same way; this setting maps
# messages.error() to Bootstrap 'danger' classes.
MESSAGE_TAGS = {
messages.ERROR: 'danger',
}
######################################################################
# Django extensions
######################################################################