Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-wiki
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-wiki
Commits
59567e33
Commit
59567e33
authored
Jan 10, 2013
by
benjaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Error pages for test project
parent
9664ce11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
testproject/testproject/templates/404.html
+17
-0
testproject/testproject/templates/500.html
+17
-0
No files found.
testproject/testproject/templates/404.html
0 → 100644
View file @
59567e33
{% extends "wiki/base.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}{% trans "404" %}{% endblock %}
{% block wiki_breadcrumbs %}{% endblock %}
{% block wiki_contents %}
<h1
class=
"page-header"
>
{% trans "404 - it's not here!" %}
</h1>
<div
class=
"error"
>
<p>
{% trans "Sorry, keep looking. Good luck!" %}
</p>
</div>
{% endblock %}
testproject/testproject/templates/500.html
0 → 100644
View file @
59567e33
{% extends "wiki/base.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}{% trans "500 Server err" %}{% endblock %}
{% block wiki_breadcrumbs %}{% endblock %}
{% block wiki_contents %}
<h1
class=
"page-header"
>
{% trans "500 - ERROR" %}
</h1>
<div
class=
"error"
>
<p>
{% trans "Oh god no the demo has failed. Please rest asured that an open source developer is the logs to resolve this, because it's fun!!" %}
</p>
</div>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment