mirror of
https://github.com/correl/codereview.git
synced 2024-11-30 11:09:51 +00:00
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
<link rel="stylesheet" href="/media/default.css" />
|
|
<link rel="stylesheet" href="/media/css/smoothness/jquery-ui-1.8.6.custom.css" />
|
|
<script type="text/javascript" src="/media/js/jquery-1.4.2.min.js"></script>
|
|
<script type="text/javascript" src="/media/js/jquery-ui-1.8.6.custom.min.js"></script>
|
|
<title>{% block title %}CodeReview{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div class="header">
|
|
<h1><a href="{% url codereview.dashboard.views.index %}">CodeReview</a></title></h1>
|
|
{% if user and user.is_authenticated %}
|
|
Currently logged in as
|
|
{{ user }}
|
|
|
|
<a href="{% url django.contrib.auth.views.logout %}">Log Out</a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="navigation">
|
|
{% block navigation %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="content">
|
|
{% block content %}
|
|
This space intentionally left blank.
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|