summaryrefslogtreecommitdiffstats
path: root/templates/month_view.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/month_view.html')
-rw-r--r--templates/month_view.html27
1 files changed, 14 insertions, 13 deletions
diff --git a/templates/month_view.html b/templates/month_view.html
index 731b9ca..7ac3ebe 100644
--- a/templates/month_view.html
+++ b/templates/month_view.html
@@ -4,19 +4,6 @@
{% block title %}{{ app_name }}{% endblock %}
-{% block additional_headers %}
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
- <script src="{{ STATIC_URL }}jquery.expander.js"></script>
- <script>
- $(document).ready(function() {
- $('span.expander').expander({
- userCollapseText: 'View Less',
- expandText: 'View More'
- });
- });
- </script>
-{% endblock %}
-
{% block content %}
<div id="recent_activities">
@@ -101,3 +88,17 @@
{% endblock %}
+
+{% block additionaljs %}
+ <script src="{{ STATIC_URL }}jquery.expander.js"></script>
+ <script>
+ $(document).ready(function() {
+ $('span.expander').expander({
+ userCollapseText: 'View Less',
+ expandText: 'View More'
+ });
+ });
+ </script>
+{% endblock %}
+
+