|
27
|
1 |
|
|
|
2 |
|
|
|
3 |
{% extends "base.html" %} |
|
|
4 |
{% comment %} |
|
|
5 |
|
|
|
6 |
Main page of django_consultant's website. |
|
|
7 |
|
|
|
8 |
{% endcomment %} |
|
|
9 |
|
|
|
10 |
{% block head %} |
|
|
11 |
{{block.super}} |
|
|
12 |
<link rel="stylesheet" href="{{ STATIC_URL }}css/article.css" /> |
|
|
13 |
<script type="text/javascript" src="{{ STATIC_URL }}libraries/jquery-1.6.4.min.js"></script> |
|
|
14 |
<script type="text/javascript" src="{{ STATIC_URL }}js/cluster.js"></script> |
|
|
15 |
<script type="text/javascript" src="{{ STATIC_URL }}js/recherche.js"></script> |
|
|
16 |
{% endblock %} |
|
|
17 |
|
|
|
18 |
{% block body %} |
|
37
|
19 |
<body onLoad="articles({{ request.session.jsondocuments }});loadStreamgraph({{ request.session.jsonStreamgraph }});"> |
|
|
20 |
{% endblock %} |
|
|
21 |
{% block contentleft %} |
|
|
22 |
{{block.super}} |
|
|
23 |
|
|
27
|
24 |
{% endblock %} |
|
37
|
25 |
|
|
|
26 |
|
|
|
27 |
{% block affichage %} {% endblock %} |
|
|
28 |
|
|
|
29 |
{% block filtrestreamgraph %}<input type="hidden" id="requestType" name="requestType" value="streamgraphUpdate"/>{% endblock %} |
|
|
30 |
{% block filtretreemap %}<form id="ajaxfiltretreemapdoc" method="post" action="/" class="filtre-date"><input type="hidden" id="requestType" name="requestType" value="treemapUpdate"/>{% endblock %} |