diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-28 16:11:44 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-28 16:11:44 -0400 |
commit | 2bc6472446426abd97d0b01f02d0318e7d828d50 (patch) | |
tree | 0d10a8ca91867221bc8b56cb62f23ce287400e65 | |
parent | 25e12977f49976d3ed23cce176df464cd69bd270 (diff) | |
download | hyperkitty-2bc6472446426abd97d0b01f02d0318e7d828d50.tar.gz hyperkitty-2bc6472446426abd97d0b01f02d0318e7d828d50.tar.xz hyperkitty-2bc6472446426abd97d0b01f02d0318e7d828d50.zip |
Fix #1: graph not shown on /list/
-rw-r--r-- | templates/recent_activities.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/recent_activities.html b/templates/recent_activities.html index f52a49c..d6f4516 100644 --- a/templates/recent_activities.html +++ b/templates/recent_activities.html @@ -13,7 +13,7 @@ <div id="fig"> <script type="text/javascript+protovis" > - var dates = ["{{dates_string|join:'","'}}"]; + var dates = ["{{dates_string|join:'","'}}"]; var data = {{evolution}}, w = 500, @@ -206,7 +206,7 @@ </section> {% endblock %} -{% block addtionaljs %} -<script type="text/javascript" src="{{ STATIC_URL }}protovis-d3.1.js"></script> +{% block additionaljs %} + <script type="text/javascript" src="{{ STATIC_URL }}protovis-d3.1.js"></script> {% endblock %} |