24 lines
392 B
Text
24 lines
392 B
Text
|
## -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
<%inherit file="/site.mako"/>
|
||
|
|
||
|
|
||
|
<%block name="body_content">
|
||
|
<div class="alert alert-block alert-error">
|
||
|
<h4 class="alert-heading">Error « ${title} »</h4>
|
||
|
<p>${explanation}</p>
|
||
|
% if comment:
|
||
|
<p>${comment}</p>
|
||
|
% endif
|
||
|
% if message:
|
||
|
<p>${message}</p>
|
||
|
% endif
|
||
|
</div>
|
||
|
</%block>
|
||
|
|
||
|
|
||
|
<%block name="title_content">
|
||
|
${title} - ${parent.title_content()}
|
||
|
</%block>
|