This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
lcs/lcs/backoffice/menu.ptl

16 lines
318 B
Plaintext

import quixote
from quixote import get_response
from quixote.html import htmltext
from qommon import get_cfg
from lcs.users import User
def error_page [html] (section, error):
html_top(section, title = _('Error'))
'<div id="error-page">'
'<h2>%s</h2>' % _('Error')
'<p>%s</p>' % error
'</div>'