MyCoServer/mycoserver/templates/http-error.mako
2014-01-12 01:33:07 +01:00

24 lines
392 B
Mako

## -*- 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>