~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to templates/404.html

  • Committer: Janos Gyerik
  • Date: 2012-04-04 13:22:47 UTC
  • Revision ID: burlyman@titan2x.com-20120404132247-2s7liq2i4e7nn8ul
minor improvement to create_user_profile signal

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
 
 
3
{% block pagetitle %}Page not found{% endblock %}
 
4
 
 
5
{% block pageheader %}Page not found{% endblock %}
 
6
 
 
7
{% block content %}
 
8
 
 
9
<div class="alert alert-error">
 
10
    <p>The page you are trying to reach does not exist (404).</p>
 
11
    <p>Path: <strong>{{ request_path }}</strong></p>
 
12
    <p>If you think this is some kind of error, 
 
13
    please drop us an email at
 
14
    <a href="mailto:bashoneliners@googlegroups.com">bashoneliners@googlegroups.com</a>,
 
15
    along with anything you might have done that may have caused the error.
 
16
    </p>
 
17
</div>
 
18
 
 
19
<p><a href="/">Back to the main page.</a></p>
 
20
 
 
21
{% endblock %}