2012-02-16 03:26:55 +05:30
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2012-02-20 18:58:22 +05:30
|
|
|
<meta charset="utf-8" />
|
2012-02-16 03:26:55 +05:30
|
|
|
<script type="text/javascript" src="/static/js/jquery-1.7.1.min.js"></script>
|
2012-05-15 18:33:43 +05:30
|
|
|
<script type="text/javascript">
|
|
|
|
console.firebug=true;//fix the openlayer problem
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript" src="http://openlayers.org/dev/OpenLayers.js"></script>
|
2012-05-23 16:48:40 +05:30
|
|
|
<style type="text/css">
|
|
|
|
body,html {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2012-05-23 16:55:33 +05:30
|
|
|
* {
|
|
|
|
-moz-box-sizing:border-box;
|
|
|
|
-webkit-box-sizing:border-box;
|
|
|
|
box-sizing:border-box; /*vendor*/
|
|
|
|
}
|
|
|
|
|
2012-05-23 16:48:40 +05:30
|
|
|
#wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listColumn {
|
|
|
|
width: 15%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#map {
|
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
</style>
|
2012-02-16 03:26:55 +05:30
|
|
|
<title>ChaloBEST: {% block title %} {% endblock %}</title>
|
|
|
|
{% block head %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
{% block body %}
|
2012-06-24 19:57:44 +05:30
|
|
|
<ul>
|
|
|
|
{% if user.is_authenticated %}
|
2012-08-19 19:13:23 +05:30
|
|
|
<li><a href="{% url userena_signout %}">Sign Out</a></li>
|
2012-06-24 19:57:44 +05:30
|
|
|
{% else %}
|
2012-08-19 19:13:23 +05:30
|
|
|
<li><a href="{% url userena_signin %}">Sign In</a></li>
|
|
|
|
<li><a href="{% url userena_signup %}">Sign Up</a></li>
|
2012-06-24 19:57:44 +05:30
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block extra_body %}
|
|
|
|
|
2012-02-16 03:26:55 +05:30
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2012-06-24 19:57:44 +05:30
|
|
|
|
2012-02-16 03:26:55 +05:30
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|