-
-
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
Showing
5 changed files
with
60 additions
and
12 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
{% if get_flashed_messages() %} | ||
<div class="flash"> | ||
0x0042 - Disk Read Error<br /> | ||
0x5555 - Bus Error <br /> | ||
{% for message in get_flashed_messages() %} | ||
{{ message }} | ||
{{ message }}<br /> | ||
{% endfor %} | ||
<br />Subroutine interrupted | ||
<br />Press any key to continue... | ||
</div> | ||
{% endif %} |
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,25 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block content %} | ||
|
||
{% include 'sys/sys_submenu.html' %} | ||
|
||
<div id="container"> | ||
|
||
<div id="container_left"> | ||
<p>Debug section</p> | ||
|
||
<a href="{{ url_for('sys_debug', action='add_all_items', type='weapon') }}">Add all weapons items to inventory</a> | ||
<a href="{{ url_for('sys_debug', action='add_all_items', type='apparel') }}">Add all apparel items to inventory</a> | ||
<a href="{{ url_for('sys_debug', action='add_all_items', type='aid') }}">Add all aid items to inventory</a> | ||
<a href="{{ url_for('sys_debug', action='add_all_items', type='misc') }}">Add all misc items to inventory</a> | ||
</div> | ||
<div id="container_right" style="background-image: url({{ url_for('static', filename='img/back/debug.png') }});" class="pixel-art"> | ||
| ||
</div> | ||
|
||
</div> | ||
|
||
|
||
|
||
{% endblock %} |
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
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