-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7328382
commit e8edac0
Showing
2 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block title %}找不到页面 - DE Online Judge{% endblock %} | ||
|
||
{% block content %} | ||
<div class="errortitle"> | ||
<h4 class="animate0 fadeInUp">找不到页面</h4> | ||
<span class="animate1 bounceIn">4</span> | ||
<span class="animate2 bounceIn">0</span> | ||
<span class="animate3 bounceIn">4</span> | ||
<div class="errorbtns animate4 fadeInUp"> | ||
<a onclick="history.back()" class="btn btn-primary btn-large">返回上一页</a> | ||
<a href="{% url 'problem:list' %}" class="btn btn-default btn-large">进入题目页</a> | ||
</div> | ||
</div> | ||
{% endblock %} |