djust-theming | Demo Home Components | Gallery Storybook Editor Diff

Error Page

python component Feedback 7 params
EXAMPLES 1
python
error_page(code=404, title='Not Found', message='The page you are looking for does not exist.')
USAGE
python
from djust_components.components.error_page import ErrorPage

component = ErrorPage(code=500,
    title='Something went wrong',
    message='',
    action_url='/',
    action_label='Go Home',
    custom_class='',
    kwargs)
html = component.render()
PARAMETERS 7
NameTypeDefault
code <class 'int'> 500
title <class 'str'> 'Something went wrong'
message <class 'str'> ''
action_url <class 'str'> '/'
action_label <class 'str'> 'Go Home'
custom_class <class 'str'> ''
kwargs