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/thread.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/thread.html')
| -rw-r--r-- | templates/thread.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/thread.html b/templates/thread.html index 41c3aa7..b480128 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -1,22 +1,10 @@ -{% extends "base_thread.html" %} +{% extends "base.html" %} {% load gravatar %} {% block title %}{{ app_name }}{% endblock %} -{% block additional_headers %} - <link rel="stylesheet" type="text/css" media="all" - href="{{ STATIC_URL }}css/thread.css" /> - - <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() { - $('div.email_body').expander({ - userCollapseText: 'View Less', - expandText: 'View More' - }); - }); - </script> +{% block additional_stylesheets %} + <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/thread.css" /> {% endblock %} {% block content %} @@ -138,3 +126,15 @@ </div> <!-- end of content --> {% endblock %} + +{% block addtionaljs %} +<script src="{{ STATIC_URL }}jquery.expander.js"></script> + <script> + $(document).ready(function() { + $('div.email_body').expander({ + userCollapseText: 'View Less', + expandText: 'View More' + }); + }); + </script> +{% endblock %} |
