|
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 <script type="text/javascript" src="{{ STATIC_URL }}js/dossierdoc.js"></script> |
|
17 {% endblock %} |
|
18 |
|
19 {% block headerdossier %} |
|
20 <div class="header-documentaire"> |
|
21 <a class="retour" href="#">« Retour</a> |
|
22 <h2><span>Mon dossier documentaire: </span><span>{{mydossierDoc.dossierDocTitle}}</span></h2> |
|
23 </div> |
|
24 {% endblock %} |
|
25 |
|
26 {% block body %} |
|
27 <body onLoad="articles({{ request.session.jsondocuments }});loadStreamgraph({{ request.session.jsonstreamgraphdossierdoc }});"> |
|
28 {% endblock %} |
|
29 |
|
30 {% block query %} |
|
31 <form id="ajaxtreemapdoc" method="post" action="/">{% csrf_token %} |
|
32 <input type="hidden" id="filtre" name="filtre" value="nok"> |
|
33 <input type="hidden" id="requestType" name="requestType" value="treemap"> |
|
34 <input type="hidden" id="refresh" name="refresh" value="nok"> |
|
35 |
|
36 <p > |
|
37 <a href="#" class="photo"></a> |
|
38 <input id="recherche_id" name="recherche" placeholder="Rechercher" class="input-recherche" type="text" title="Rechercher"/> |
|
39 <input id="recherche_button_doc" type="button" value="" class="recherche-submit"/> |
|
40 |
|
41 </p> |
|
42 </form> |
|
43 {% endblock %} |
|
44 |
|
45 {% block contentleft %} |
|
46 <div class="content-left documentaire"> |
|
47 {% block titleleft %} <h2 id="titleleft"> </h2> {% endblock %} |
|
48 <div class="widget-wrapper"> |
|
49 <div class="widget-wrap"> |
|
50 <!--div class="widget recherche"> |
|
51 <h3><a href="#">RECHERCHE</a></h3> |
|
52 <div class="widget-inner"> |
|
53 <form action="#" method=""> |
|
54 <p class="clearfix"> |
|
55 <input type="text" name="" placeholder="Rechercher" /> |
|
56 <input type="submit" title="Rechercher" value="" /> |
|
57 </p> |
|
58 </form> |
|
59 </div> |
|
60 </div--><!-- recherche --> |
|
61 <div class="widget affichage"> |
|
62 <h3><a href="#" class="open">AFFICHAGE</a></h3> |
|
63 <div class="widget-inner"> |
|
64 <ul class="clearfix"> |
|
65 <li><a title="Passer en vue Treemap" class="treemap active" href="#" ><span class="visuel"></span><span class="fonction">Treemap</span> </a></li> |
|
66 <li id="listehref"><a title="Passer en vue Liste" class="liste" href="#" ><span class="visuel"></span><span class="fonction">Liste</span> </a></li> |
|
67 </ul> |
|
68 </div> |
|
69 </div><!-- affichage --> |
|
70 |
|
71 <!--div class="widget filtre"> |
|
72 <h3><a href="#" class="open">FILTRES</a></h3> |
|
73 <div class="widget-inner"> |
|
74 <form action="#" class="filtre-date"> |
|
75 <p> |
|
76 <label for="">De :</label> |
|
77 <input type="text" name="dateBegin" class="dateBegin" /> |
|
78 </p> |
|
79 <p> |
|
80 <label for="">à :</label> |
|
81 <input type="text" name="dateEnd" class="dateEnd" /> |
|
82 </p> |
|
83 </form> |
|
84 <h4>Catégories :</h4> |
|
85 <form action="#" class="filtre-categorie"> |
|
86 <p><input type="checkbox" checked="checked"> <label for="">International</label> </p> |
|
87 <p><input type="checkbox" checked="checked"> <label for="">France</label> </p> |
|
88 <p><input type="checkbox" checked="checked"> <label for="">Economie</label> </p> |
|
89 <p><input type="checkbox" checked="checked"> <label for="">Culture</label> </p> |
|
90 </form> |
|
91 </div> |
|
92 </div--><!-- filtre --> |
|
93 |
|
94 <div class="widget filtre"> |
|
95 <h3><a href="#" class="open">FILTRES</a></h3> |
|
96 <div class="widget-inner"> |
|
97 |
|
98 <form id="ajaxfiltrestreamgraph" method="post" action="/?next={{request.get_full_path}}">{% csrf_token %} |
|
99 <input type="hidden" id="requestType" name="requestType" value="streamgraph"/> |
|
100 <input type="hidden" id="filtre" name="filtre" value="dossierDocOk"/> |
|
101 </form> |
|
102 |
|
103 <form id="ajaxfiltretreemap" method="post" action="/?next={{request.get_full_path}}" class="filtre-date">{% csrf_token %} |
|
104 <input type="hidden" id="requestType" name="requestType" value="treemap"> |
|
105 <input type="hidden" name="filtre" value="dossierDocOk"> |
|
106 <p> |
|
107 <label for="">De :</label> |
|
108 <input id="pickeddatebegin" type="text" name="from_date" class="dateBegin" value="07/01/2007"/> |
|
109 </p> |
|
110 <p> |
|
111 <label for="">à :</label> |
|
112 <input id="pickeddateend" type="text" name="to_date" class="dateEnd" value="12/01/2012"/> |
|
113 </p> |
|
114 <!--/form--> |
|
115 <h4>Catégories :</h4> |
|
116 <p><input type="checkbox" name="categories1" value="International" class="checkbox_category" checked="checked"/> <label for="">International</label> </p> |
|
117 <p><input type="checkbox" name="categories2" value="France" class="checkbox_category" checked="checked"/> <label for="">France</label> </p> |
|
118 <p><input type="checkbox" name="categories3" value="Economie" class="checkbox_category" checked="checked"/> <label for="">Economie</label> </p> |
|
119 <p><input type="checkbox" name="categories4" value="Culture" class="checkbox_category" checked="checked"/> <label for="">Culture</label> </p> |
|
120 </form> |
|
121 </div> |
|
122 </div><!-- filtre --> |
|
123 |
|
124 </div> |
|
125 </div> |
|
126 </div> |
|
127 {% endblock %} |
|
128 |
|
129 |
|
130 {% block affichage %} {% endblock %} |
|
131 |
|
132 {% block filtrestreamgraph %}<input type="hidden" id="requestType" name="requestType" value="streamgraphUpdate"/>{% endblock %} |
|
133 {% block filtretreemap %}<form id="ajaxfiltretreemapdoc" method="post" action="/" class="filtre-date"><input type="hidden" id="requestType" name="requestType" value="treemapUpdate"/>{% endblock %} |