Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ialbert committed Mar 31, 2021
1 parent 3579432 commit d052564
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 9 additions & 1 deletion biostar/forum/templates/500.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{% extends "forum_base.html" %}

{% block title %}Error{% endblock %}

{% block content %}
<div class="ui error message"> <i class="exclamation icon"> </i>500 Error: Server Error. </div>

<div class="ui basic segment">
<div class="ui error message">
<i class="exclamation icon"></i> Internal Server Error.
</div>
We apologize! An internal server error has occurred. If the problem persist please contact us.
</div>
{% endblock %}
6 changes: 4 additions & 2 deletions biostar/forum/templates/forum_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>

<title>
{% block title %}{{ site_name }}{% endblock %}
{% block title %}Page Title{% endblock %}
</title>

<meta charset="UTF-8">
Expand Down Expand Up @@ -91,7 +91,9 @@
</span>

{% block container %}
{% show_messages messages %}
{% if messages %}
{% show_messages messages %}
{% endif %}
<div class="ui bottom attached segment block">

{% block content %}
Expand Down

0 comments on commit d052564

Please sign in to comment.