some javascript and stylesheets that wholePage.html needed
diff --git a/planetstack/templates/admin/wholePage.html b/planetstack/templates/admin/wholePage.html
index 1c7423f..b68085b 100644
--- a/planetstack/templates/admin/wholePage.html
+++ b/planetstack/templates/admin/wholePage.html
@@ -1,4 +1,11 @@
+{% load admin_static %}
 <html>
-<head>{% block extrahead %}{% endblock %}</head>
+<head>
+<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% endblock %}"/>
+<link rel="stylesheet" type="text/css" href="{% static 'suit/bootstrap/css/bootstrap.min.css' %}" media="all"/>
+<script src="{% static 'suit/js/jquery-1.9.1.min.js' %}"></script>
+<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
+{% block extrahead %}{% endblock %}
+</head>
 <body>{% block content %}{% endblock %}</body>            
 </html>