##// END OF EJS Templates
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login Added base css and html resources

File last commit:

r9:f67fe28f default
r9:f67fe28f 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>