##// END OF EJS Templates
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.

File last commit:

r18:174f8766 default
r28:b39294a8 default
Show More
base.html
19 lines | 372 B | text/html | HtmlLexer
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/base_page.css" media="all"/>
{% block head %}{% endblock %}
</head>
<body>
<div id="admin_panel">
{% if request.session.admin == True %}
Admin panel TODO: Need to implement <BR />
{% endif %}
</div>
{% block content %}{% endblock %}
</body>
</html>