diff options
| author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-20 02:54:17 -0400 |
|---|---|---|
| committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-20 02:54:17 -0400 |
| commit | 5071591286b89bd05fb9febed308fc219bf7deca (patch) | |
| tree | 67a738ac7d5e2e56f35cfe22997cc38f2f5a617f /templates/search.html | |
| parent | c5c7fa5f7ff3f09ea735d3d054708fc2164792fb (diff) | |
| download | hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.tar.gz hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.tar.xz hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.zip | |
removing all base_*.html template files. All templates now extends single base.html
Diffstat (limited to 'templates/search.html')
| -rw-r--r-- | templates/search.html | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/templates/search.html b/templates/search.html index 3871a9e..c173ebf 100644 --- a/templates/search.html +++ b/templates/search.html @@ -2,21 +2,6 @@ {% load poll_extras %} {% load gravatar %} -{% 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 %} {% if threads.object_list %} @@ -115,3 +100,16 @@ {% endif %} {% 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 %} + |
