'BadFormatAmount' object has no attribute 'hint'
Request Method: | POST |
---|---|
Request URL: | https://bank.demo.taler.net/profile |
Django Version: | 2.0.2 |
Exception Type: | AttributeError |
Exception Value: | 'BadFormatAmount' object has no attribute 'hint' |
Exception Location: | /home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/middleware.py in process_exception, line 62 |
Python Executable: | /home/demo-blue/local/bin/uwsgi |
Python Version: | 3.5.3 |
Python Path: | ['.', '', '/home/demo-blue/local/lib/python3.5/site-packages', '/usr/lib/python35.zip', '/usr/lib/python3.5', '/usr/lib/python3.5/plat-x86_64-linux-gnu', '/usr/lib/python3.5/lib-dynload', '/usr/local/lib/python3.5/dist-packages', '/usr/lib/python3/dist-packages'] |
Server time: | Tue, 27 Mar 2018 16:02:34 +0000 |
/home/demo-blue/local/lib/python3.5/site-packages/django/core/handlers/base.py
in _get_response
response = middleware_method(request, callback, callback_args, callback_kwargs)
if response:
break
if response is None:
wrapped_callback = self.make_view_atomic(callback)
try:
response = wrapped_callback(request, *callback_args, **callback_kwargs)...
except Exception as e:
response = self.process_exception_by_middleware(e, request)
# Complain if the view returned None (a common error).
if response is None:
if isinstance(callback, types.FunctionType): # FBV
Variable | Value |
---|---|
callback | <function profile_page at 0x7f3547c8fa60> |
callback_args | () |
callback_kwargs | {} |
middleware_method | <bound method CsrfViewMiddleware.process_view of <django.middleware.csrf.CsrfViewMiddleware object at 0x7f3547c8d6d8>> |
request | <WSGIRequest: POST '/profile'> |
resolver | <URLResolver 'talerbank.app.urls' (None:None) '^/'> |
resolver_match | ResolverMatch(func=talerbank.app.views.profile_page, args=(), kwargs={}, url_name=profile, app_names=[], namespaces=[]) |
response | None |
self | <django.core.handlers.wsgi.WSGIHandler object at 0x7f3547009f28> |
wrapped_callback | <function profile_page at 0x7f3547c8fa60> |
/home/demo-blue/local/lib/python3.5/site-packages/django/contrib/auth/decorators.py
in _wrapped_view
that takes the user object and returns True if the user passes.
"""
def decorator(view_func):
@wraps(view_func)
def _wrapped_view(request, *args, **kwargs):
if test_func(request.user):
return view_func(request, *args, **kwargs)...
path = request.build_absolute_uri()
resolved_login_url = resolve_url(login_url or settings.LOGIN_URL)
# If the login url is the same scheme and net location then just
# use the path as the "next" url.
login_scheme, login_netloc = urlparse(resolved_login_url)[:2]
current_scheme, current_netloc = urlparse(path)[:2]
Variable | Value |
---|---|
args | () |
kwargs | {} |
login_url | None |
redirect_field_name | 'next' |
request | <WSGIRequest: POST '/profile'> |
test_func | <function login_required.<locals>.<lambda> at 0x7f3547c8f950> |
view_func | <function profile_page at 0x7f3547c8f6a8> |
/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/views.py
in profile_page
def profile_page(request):
if request.method == "POST":
wtf = WTForm(request.POST)
if wtf.is_valid():
amount_parts = (settings.TALER_CURRENCY,
wtf.cleaned_data.get("amount") + 0.0)
wire_transfer(
Amount.parse("%s:%s" % amount_parts),...
BankAccount.objects.get(user=request.user),
BankAccount.objects.get(account_no=wtf.cleaned_data.get("receiver")),
wtf.cleaned_data.get("subject"))
request.session["profile_hint"] = False, True, "Wire transfer successful!"
return redirect("profile")
wtf = WTForm()
Variable | Value |
---|---|
amount_parts | ('KUDOS', 1e+38) |
request | <WSGIRequest: POST '/profile'> |
wtf | <WTForm bound=True, valid=True, fields=(amount;receiver;subject)> |
/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/amount.py
in parse
# instantiating an amount object.
@classmethod
def parse(cls, amount_str: str):
exp = r'^\s*([-_*A-Za-z0-9]+):([0-9]+)\.?([0-9]+)?\s*$'
import re
parsed = re.search(exp, amount_str)
if not parsed:
raise BadFormatAmount(amount_str)...
value = int(parsed.group(2))
fraction = 0
for i, digit in enumerate(parsed.group(3) or "0"):
fraction += int(int(digit) * (Amount._fraction() / 10 ** (i+1)))
return cls(parsed.group(1), value, fraction)
Variable | Value |
---|---|
amount_str | 'KUDOS:1e+38' |
cls | <class 'talerbank.app.amount.Amount'> |
exp | '^\\s*([-_*A-Za-z0-9]+):([0-9]+)\\.?([0-9]+)?\\s*$' |
parsed | None |
re | <module 're' from '/usr/lib/python3.5/re.py'> |
/home/demo-blue/local/lib/python3.5/site-packages/django/core/handlers/exception.py
in inner
This decorator is automatically applied to all middleware to ensure that
no middleware leaks an exception and that the next middleware in the stack
can rely on getting a response instead of an exception.
"""
@wraps(get_response)
def inner(request):
try:
response = get_response(request)...
except Exception as exc:
response = response_for_exception(request, exc)
return response
return inner
Variable | Value |
---|---|
exc | AttributeError("'BadFormatAmount' object has no attribute 'hint'",) |
get_response | <bound method BaseHandler._get_response of <django.core.handlers.wsgi.WSGIHandler object at 0x7f3547009f28>> |
request | <WSGIRequest: POST '/profile'> |
/home/demo-blue/local/lib/python3.5/site-packages/django/core/handlers/base.py
in _get_response
break
if response is None:
wrapped_callback = self.make_view_atomic(callback)
try:
response = wrapped_callback(request, *callback_args, **callback_kwargs)
except Exception as e:
response = self.process_exception_by_middleware(e, request)...
# Complain if the view returned None (a common error).
if response is None:
if isinstance(callback, types.FunctionType): # FBV
view_name = callback.__name__
else: # CBV
Variable | Value |
---|---|
callback | <function profile_page at 0x7f3547c8fa60> |
callback_args | () |
callback_kwargs | {} |
middleware_method | <bound method CsrfViewMiddleware.process_view of <django.middleware.csrf.CsrfViewMiddleware object at 0x7f3547c8d6d8>> |
request | <WSGIRequest: POST '/profile'> |
resolver | <URLResolver 'talerbank.app.urls' (None:None) '^/'> |
resolver_match | ResolverMatch(func=talerbank.app.views.profile_page, args=(), kwargs={}, url_name=profile, app_names=[], namespaces=[]) |
response | None |
self | <django.core.handlers.wsgi.WSGIHandler object at 0x7f3547009f28> |
wrapped_callback | <function profile_page at 0x7f3547c8fa60> |
/home/demo-blue/local/lib/python3.5/site-packages/django/core/handlers/base.py
in process_exception_by_middleware
def process_exception_by_middleware(self, exception, request):
"""
Pass the exception to the exception middleware. If no middleware
return a response for this exception, raise it.
"""
for middleware_method in self._exception_middleware:
response = middleware_method(request, exception)...
if response:
return response
raise
Variable | Value |
---|---|
exception | BadFormatAmount('Bad format amount: KUDOS:1e+38',) |
middleware_method | <bound method ExceptionMiddleware.process_exception of <talerbank.app.middleware.ExceptionMiddleware object at 0x7f3546b5ac88>> |
request | <WSGIRequest: POST '/profile'> |
self | <django.core.handlers.wsgi.WSGIHandler object at 0x7f3547009f28> |
/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/middleware.py
in process_exception
taler_ec += self.apis.get(request.path, 1000)
render_to = self.render.get(request.path)
if not render_to:
return JsonResponse({"ec": taler_ec,
"error": exception.hint},
status=exception.http_status_code)
request.session["profile_hint"] = \
True, False, exception.hint...
return redirect(render_to)
# [1] https://git.taler.net/exchange.git/tree/src/include/taler_error_codes.h#n1502
Variable | Value |
---|---|
exception | BadFormatAmount('Bad format amount: KUDOS:1e+38',) |
render_to | 'profile' |
request | <WSGIRequest: POST '/profile'> |
self | <talerbank.app.middleware.ExceptionMiddleware object at 0x7f3546b5ac88> |
taler_ec | 1011 |
Duuh
No GET data
Variable | Value |
---|---|
amount | '100000000000000000000000000000000000000' |
csrfmiddlewaretoken | 'NMIBlRAjznV0xmvpItw4aX6mJOJSNMto50K7gkZATlNBfILWsjPnvuKI96HanFXx' |
receiver | '74' |
subject | 'IO' |
No FILES data
Variable | Value |
---|---|
sessionid | 'lyk1kmm85gy99stc88j3j77smla6jy1s' |
csrftoken | '0xqCaOBzMRh0aMw2bvEffANGa6q1o0chiLs85h0Q6P9BS8MzVlXyA7r2AoojYTGq' |
Variable | Value |
---|---|
CONTENT_LENGTH | '154' |
CONTENT_TYPE | 'application/x-www-form-urlencoded' |
CSRF_COOKIE | '0xqCaOBzMRh0aMw2bvEffANGa6q1o0chiLs85h0Q6P9BS8MzVlXyA7r2AoojYTGq' |
DOCUMENT_ROOT | '/usr/share/nginx/html' |
HTTPS | 'on' |
HTTP_ACCEPT | 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' |
HTTP_ACCEPT_ENCODING | 'gzip, deflate, br' |
HTTP_ACCEPT_LANGUAGE | 'en-US,en;q=0.5' |
HTTP_CONNECTION | 'keep-alive' |
HTTP_CONTENT_LENGTH | '154' |
HTTP_CONTENT_TYPE | 'application/x-www-form-urlencoded' |
HTTP_COOKIE | ('csrftoken=0xqCaOBzMRh0aMw2bvEffANGa6q1o0chiLs85h0Q6P9BS8MzVlXyA7r2AoojYTGq; ' 'sessionid=lyk1kmm85gy99stc88j3j77smla6jy1s') |
HTTP_DNT | '1' |
HTTP_HOST | 'bank.demo.taler.net' |
HTTP_REFERER | 'https://bank.demo.taler.net/profile' |
HTTP_UPGRADE_INSECURE_REQUESTS | '1' |
HTTP_USER_AGENT | 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0' |
PATH_INFO | '/profile' |
QUERY_STRING | '' |
REMOTE_ADDR | '2001:1620:e06:0:e036:7691:4f02:92d9' |
REMOTE_PORT | '49394' |
REQUEST_METHOD | 'POST' |
REQUEST_SCHEME | 'https' |
REQUEST_URI | '/profile' |
SCRIPT_NAME | '' |
SERVER_NAME | 'bank.demo.taler.net' |
SERVER_PORT | '443' |
SERVER_PROTOCOL | 'HTTP/1.1' |
uwsgi.node | b'tripwire' |
uwsgi.version | b'2.0.16' |
wsgi.errors | <_io.TextIOWrapper name=2 mode='w' encoding='UTF-8'> |
wsgi.file_wrapper | '' |
wsgi.input | <uwsgi._Input object at 0x7f3546bd3df8> |
wsgi.multiprocess | False |
wsgi.multithread | False |
wsgi.run_once | False |
wsgi.url_scheme | 'https' |
wsgi.version | (1, 0) |
talerbank.settings
Setting | Value |
---|---|
ABSOLUTE_URL_OVERRIDES | {} |
ADMINS | [] |
ALLOWED_HOSTS | ['*'] |
APPEND_SLASH | True |
AUTHENTICATION_BACKENDS | ['django.contrib.auth.backends.ModelBackend'] |
AUTH_PASSWORD_VALIDATORS | '********************' |
AUTH_USER_MODEL | 'auth.User' |
BASE_DIR | '/home/demo-blue/local/lib/python3.5/site-packages' |
CACHES | {'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}} |
CACHE_MIDDLEWARE_ALIAS | 'default' |
CACHE_MIDDLEWARE_KEY_PREFIX | '********************' |
CACHE_MIDDLEWARE_SECONDS | 600 |
CHECK_DBSTRING_FORMAT | <_sre.SRE_Match object; span=(0, 21), match='postgres:///talerdemo'> |
CSRF_COOKIE_AGE | 31449600 |
CSRF_COOKIE_DOMAIN | None |
CSRF_COOKIE_HTTPONLY | False |
CSRF_COOKIE_NAME | 'csrftoken' |
CSRF_COOKIE_PATH | '/' |
CSRF_COOKIE_SECURE | False |
CSRF_FAILURE_VIEW | 'django.views.csrf.csrf_failure' |
CSRF_HEADER_NAME | 'HTTP_X_CSRFTOKEN' |
CSRF_TRUSTED_ORIGINS | [] |
CSRF_USE_SESSIONS | False |
DATABASES | {'default': {'ATOMIC_REQUESTS': False, 'AUTOCOMMIT': True, 'CONN_MAX_AGE': 0, 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'HOST': '', 'NAME': 'talerdemo', 'OPTIONS': {}, 'PASSWORD': '********************', 'PORT': '', 'TEST': {'CHARSET': None, 'COLLATION': None, 'MIRROR': None, 'NAME': None}, 'TIME_ZONE': None, 'USER': ''}} |
DATABASE_ROUTERS | [] |
DATA_UPLOAD_MAX_MEMORY_SIZE | 2621440 |
DATA_UPLOAD_MAX_NUMBER_FIELDS | 1000 |
DATETIME_FORMAT | 'N j, Y, P' |
DATETIME_INPUT_FORMATS | ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S.%f', '%Y-%m-%d %H:%M', '%Y-%m-%d', '%m/%d/%Y %H:%M:%S', '%m/%d/%Y %H:%M:%S.%f', '%m/%d/%Y %H:%M', '%m/%d/%Y', '%m/%d/%y %H:%M:%S', '%m/%d/%y %H:%M:%S.%f', '%m/%d/%y %H:%M', '%m/%d/%y'] |
DATE_FORMAT | 'N j, Y' |
DATE_INPUT_FORMATS | ['%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', '%b %d %Y', '%b %d, %Y', '%d %b %Y', '%d %b, %Y', '%B %d %Y', '%B %d, %Y', '%d %B %Y', '%d %B, %Y'] |
DBCONFIG | {'ATOMIC_REQUESTS': False, 'AUTOCOMMIT': True, 'CONN_MAX_AGE': 0, 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'HOST': '', 'NAME': 'talerdemo', 'OPTIONS': {}, 'PASSWORD': '********************', 'PORT': '', 'TEST': {'CHARSET': None, 'COLLATION': None, 'MIRROR': None, 'NAME': None}, 'TIME_ZONE': None, 'USER': ''} |
DBNAME | 'postgres:///talerdemo' |
DB_URL | ParseResult(scheme='postgres', netloc='', path='/talerdemo', params='', query='', fragment='') |
DEBUG | True |
DEBUG_PROPAGATE_EXCEPTIONS | False |
DECIMAL_SEPARATOR | '.' |
DEFAULT_CHARSET | 'utf-8' |
DEFAULT_CONTENT_TYPE | 'text/html' |
DEFAULT_EXCEPTION_REPORTER_FILTER | 'django.views.debug.SafeExceptionReporterFilter' |
DEFAULT_FILE_STORAGE | 'django.core.files.storage.FileSystemStorage' |
DEFAULT_FROM_EMAIL | 'webmaster@localhost' |
DEFAULT_INDEX_TABLESPACE | '' |
DEFAULT_TABLESPACE | '' |
DISALLOWED_USER_AGENTS | [] |
EMAIL_BACKEND | 'django.core.mail.backends.smtp.EmailBackend' |
EMAIL_HOST | 'localhost' |
EMAIL_HOST_PASSWORD | '********************' |
EMAIL_HOST_USER | '' |
EMAIL_PORT | 25 |
EMAIL_SSL_CERTFILE | None |
EMAIL_SSL_KEYFILE | '********************' |
EMAIL_SUBJECT_PREFIX | '[Django] ' |
EMAIL_TIMEOUT | None |
EMAIL_USE_LOCALTIME | False |
EMAIL_USE_SSL | False |
EMAIL_USE_TLS | False |
FILE_CHARSET | 'utf-8' |
FILE_UPLOAD_DIRECTORY_PERMISSIONS | None |
FILE_UPLOAD_HANDLERS | ['django.core.files.uploadhandler.MemoryFileUploadHandler', 'django.core.files.uploadhandler.TemporaryFileUploadHandler'] |
FILE_UPLOAD_MAX_MEMORY_SIZE | 2621440 |
FILE_UPLOAD_PERMISSIONS | None |
FILE_UPLOAD_TEMP_DIR | None |
FIRST_DAY_OF_WEEK | 0 |
FIXTURE_DIRS | [] |
FORCE_SCRIPT_NAME | None |
FORMAT_MODULE_PATH | None |
FORM_RENDERER | 'django.forms.renderers.DjangoTemplates' |
HOST | None |
IGNORABLE_404_URLS | [] |
INSTALLED_APPS | ['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'talerbank.app'] |
INTERNAL_IPS | [] |
LANGUAGES | [('af', 'Afrikaans'), ('ar', 'Arabic'), ('ast', 'Asturian'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('dsb', 'Lower Sorbian'), ('el', 'Greek'), ('en', 'English'), ('en-au', 'Australian English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-co', 'Colombian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy', 'Frisian'), ('ga', 'Irish'), ('gd', 'Scottish Gaelic'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hsb', 'Upper Sorbian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('io', 'Ido'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kab', 'Kabyle'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('mr', 'Marathi'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmål'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-hans', 'Simplified Chinese'), ('zh-hant', 'Traditional Chinese')] |
LANGUAGES_BIDI | ['he', 'ar', 'fa', 'ur'] |
LANGUAGE_CODE | 'en-us' |
LANGUAGE_COOKIE_AGE | None |
LANGUAGE_COOKIE_DOMAIN | None |
LANGUAGE_COOKIE_NAME | 'django_language' |
LANGUAGE_COOKIE_PATH | '/' |
LOCALE_PATHS | [] |
LOGGER | <logging.Logger object at 0x7f3546bcb748> |
LOGGING | {} |
LOGGING_CONFIG | 'logging.config.dictConfig' |
LOGIN_REDIRECT_URL | 'index' |
LOGIN_URL | 'login' |
LOGOUT_REDIRECT_URL | None |
MANAGERS | [] |
MEDIA_ROOT | '' |
MEDIA_URL | '' |
MESSAGE_STORAGE | 'django.contrib.messages.storage.fallback.FallbackStorage' |
MIDDLEWARE | ['django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'talerbank.app.middleware.ExceptionMiddleware'] |
MIGRATION_MODULES | {} |
MONTH_DAY_FORMAT | 'F j' |
NUMBER_GROUPING | 0 |
P | {} |
PASSWORD_HASHERS | '********************' |
PASSWORD_RESET_TIMEOUT_DAYS | '********************' |
PREPEND_WWW | False |
ROOT_URLCONF | 'talerbank.app.urls' |
SECRET_KEY | '********************' |
SECURE_BROWSER_XSS_FILTER | False |
SECURE_CONTENT_TYPE_NOSNIFF | False |
SECURE_HSTS_INCLUDE_SUBDOMAINS | False |
SECURE_HSTS_PRELOAD | False |
SECURE_HSTS_SECONDS | 0 |
SECURE_PROXY_SSL_HEADER | None |
SECURE_REDIRECT_EXEMPT | [] |
SECURE_SSL_HOST | None |
SECURE_SSL_REDIRECT | False |
SERVER_EMAIL | 'root@localhost' |
SESSION_CACHE_ALIAS | 'default' |
SESSION_COOKIE_AGE | 1209600 |
SESSION_COOKIE_DOMAIN | None |
SESSION_COOKIE_HTTPONLY | True |
SESSION_COOKIE_NAME | 'sessionid' |
SESSION_COOKIE_PATH | '/' |
SESSION_COOKIE_SECURE | False |
SESSION_ENGINE | 'django.contrib.sessions.backends.db' |
SESSION_EXPIRE_AT_BROWSER_CLOSE | False |
SESSION_FILE_PATH | None |
SESSION_SAVE_EVERY_REQUEST | False |
SESSION_SERIALIZER | 'django.contrib.sessions.serializers.JSONSerializer' |
SETTINGS_MODULE | 'talerbank.settings' |
SHORT_DATETIME_FORMAT | 'm/d/Y P' |
SHORT_DATE_FORMAT | 'm/d/Y' |
SIGNING_BACKEND | 'django.core.signing.TimestampSigner' |
SILENCED_SYSTEM_CHECKS | [] |
STATICFILES_DIRS | ['/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/static', '/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/static/web-common'] |
STATICFILES_FINDERS | ['django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder'] |
STATICFILES_STORAGE | 'django.contrib.staticfiles.storage.StaticFilesStorage' |
STATIC_ROOT | '/tmp/talerbankstatic/' |
STATIC_URL | '/static/' |
TALER_CURRENCY | 'KUDOS' |
TALER_DIGITS | 2 |
TALER_EXPECTS_DONATIONS | ['Tor', 'GNUnet', 'Taler', 'FSF'] |
TALER_MAX_DEBT | 'KUDOS:0.0' |
TALER_MAX_DEBT_BANK | 'KUDOS:0.0' |
TALER_PREDEFINED_ACCOUNTS | ['Bank', 'Exchange', 'Tor', 'GNUnet', 'Taler', 'FSF', 'Tutorial', 'Survey'] |
TALER_SUGGESTED_EXCHANGE | 'https://exchange.demo.taler.net/' |
TC | <talerbank.talerconfig.TalerConfig object at 0x7f3546bcb780> |
TEMPLATES | [{'BACKEND': 'django.template.backends.jinja2.Jinja2', 'DIRS': ['/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/static/web-common/', '/home/demo-blue/local/lib/python3.5/site-packages/talerbank/app/templates'], 'OPTIONS': {'environment': 'talerbank.jinja2.environment'}}] |
TEMPLATE_CONTEXT_PROCESSORS | [] |
TEST_NON_SERIALIZED_APPS | [] |
TEST_RUNNER | 'django.test.runner.DiscoverRunner' |
THOUSAND_SEPARATOR | ',' |
TIME_FORMAT | 'P' |
TIME_INPUT_FORMATS | ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M'] |
TIME_ZONE | 'UTC' |
USE_ETAGS | False |
USE_I18N | True |
USE_L10N | True |
USE_THOUSAND_SEPARATOR | False |
USE_TZ | True |
USE_X_FORWARDED_HOST | False |
USE_X_FORWARDED_PORT | False |
WSGI_APPLICATION | 'talerbank.wsgi.application' |
X_FRAME_OPTIONS | 'SAMEORIGIN' |
YEAR_MONTH_FORMAT | 'F Y' |
You're seeing this error because you have DEBUG = True
in your
Django settings file. Change that to False
, and Django will
display a standard page generated by the handler for this status code.