diff options
Diffstat (limited to 'templates/prospecting.html')
-rw-r--r-- | templates/prospecting.html | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/templates/prospecting.html b/templates/prospecting.html index 9ada16f..dab2958 100644 --- a/templates/prospecting.html +++ b/templates/prospecting.html @@ -1,8 +1,16 @@ -{% extends "plainbase.html" %} +{% autoescape off %} -{% block title %}Prospecting{% endblock %} +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Prospecting Guide</title> +<link rel="stylesheet" type="text/css" href="/css/main2.css" /> +<link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" /> +<script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script> +<script src="{{ settings.JSLIB_URL }}jquery-ui/jquery-ui.min.js" type="text/javascript"></script> -{% block body %} +</head> +<body> <h1>Prospecting Guide</h1> @@ -126,4 +134,6 @@ and you can't see any annotations unless you zoom in: </table> {% endfor %} -{% endblock %} +</body> +</html> +{% endautoescape %} |