|
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 %} |
|
|
19 |
<body onLoad="articles({{ request.session.json2 }});"> |
|
|
20 |
{% endblock %} |
|
|
21 |
|
|
|
22 |
{% block contentleft %} |
|
|
23 |
<div class="content-left"> |
|
|
24 |
<h2> {{cluster_title}} »</h2> |
|
|
25 |
<div class="widget-wrapper"> |
|
|
26 |
<div class="widget-wrap"> |
|
|
27 |
<!--div class="widget recherche"> |
|
|
28 |
<h3><a href="#">RECHERCHE</a></h3> |
|
|
29 |
<div class="widget-inner"> |
|
|
30 |
<form action="#" method=""> |
|
|
31 |
<p class="clearfix"> |
|
|
32 |
<input type="text" name="" placeholder="Rechercher" /> |
|
|
33 |
<input type="submit" title="Rechercher" value="" /> |
|
|
34 |
</p> |
|
|
35 |
</form> |
|
|
36 |
</div> |
|
|
37 |
</div--><!-- recherche --> |
|
|
38 |
|
|
|
39 |
<div class="widget filtre"> |
|
|
40 |
<h3><a href="#">FILTRES</a></h3> |
|
|
41 |
<div class="widget-inner"> |
|
|
42 |
<form id="ajax3" method="post" action="{{request.get_full_path}}" class="filtre-date">{% csrf_token %} |
|
|
43 |
<input type="hidden" name="filtre" value="ok"> |
|
|
44 |
<p> |
|
|
45 |
<label for="">De :</label> |
|
|
46 |
<input type="text" id="pickeddatebegincluster" name="from_date" class="dateBegin" value="07/01/2007" /> |
|
|
47 |
</p> |
|
|
48 |
<p> |
|
|
49 |
<label for="">à :</label> |
|
|
50 |
<input type="text" id="pickeddateendcluster" name="to_date" class="dateEnd" value="12/01/2012"/> |
|
|
51 |
</p> |
|
|
52 |
<!--/form--> |
|
|
53 |
<h4>Catégories :</h4> |
|
|
54 |
<!--form action="#" class="filtre-categorie"--> |
|
|
55 |
<p><input type="checkbox" name="categories" id="categorie1" value="International" class="checkbox_category"/> <label for="">International</label> </p> |
|
|
56 |
<p><input type="checkbox" name="categories" id="categorie2" value="France" class="checkbox_category"/> <label for="">France</label> </p> |
|
|
57 |
<p><input type="checkbox" name="categories" id="categorie3" value="Economie" class="checkbox_category"/> <label for="">Economie</label> </p> |
|
|
58 |
<p><input type="checkbox" name="categories" id="categorie4" value="Culture" class="checkbox_category" /> <label for="">Culture</label> </p> |
|
|
59 |
</form> |
|
|
60 |
</div> |
|
|
61 |
</div><!-- filtre --> |
|
|
62 |
<div class="widget links"> |
|
|
63 |
<h3><a href="#">DOSSIER ASSOCIES</a></h3> |
|
|
64 |
<div class="widget-inner"> |
|
|
65 |
<ul> |
|
|
66 |
<li><a href="#">« Corruption »</a></li> |
|
|
67 |
<li><a href="#">« Corruption »</a></li> |
|
|
68 |
<li><a href="#">« Corruption »</a></li> |
|
|
69 |
<li><a href="#">« Corruption »</a></li> |
|
|
70 |
</ul> |
|
|
71 |
</div> |
|
|
72 |
</div><!-- links --> |
|
|
73 |
</div> |
|
|
74 |
</div> |
|
|
75 |
</div> |
|
|
76 |
{% endblock %} |