##// END OF EJS Templates
Changed metadata design. Make space split tags.
Changed metadata design. Make space split tags.

File last commit:

r31:e49d51eb default
r31:e49d51eb default
Show More
base.html
22 lines | 405 B | text/html | HtmlLexer
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="{% static "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>