
* Users are persisted by user_id and accessed from web font directly * Web app initializing section is refactored * 404 error handler is made more looking like error Closes bug 1213841 Change-Id: Ie6ff57505dcc14291cd3267a7448cddb2b478eb2
16 lines
297 B
HTML
16 lines
297 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<meta http-equiv="refresh" content="5; url=/">
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<h2>404 Not Found</h2>
|
|
|
|
<div>The requested page is not found. The page will be automatically redirected to <a href="/">Overview</a>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|