--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/alcatel/django/templates/cluster.html Thu Jan 24 16:58:55 2013 +0100
@@ -0,0 +1,76 @@
+
+
+{% extends "base.html" %}
+{% comment %}
+
+Main page of django_consultant's website.
+
+{% endcomment %}
+
+{% block head %}
+ {{block.super}}
+ <link rel="stylesheet" href="{{ STATIC_URL }}css/article.css" />
+ <script type="text/javascript" src="{{ STATIC_URL }}libraries/jquery-1.6.4.min.js"></script>
+ <script type="text/javascript" src="{{ STATIC_URL }}js/cluster.js"></script>
+ <script type="text/javascript" src="{{ STATIC_URL }}js/recherche.js"></script>
+ {% endblock %}
+
+ {% block body %}
+ <body onLoad="articles({{ request.session.json2 }});">
+ {% endblock %}
+
+ {% block contentleft %}
+ <div class="content-left">
+ <h2> {{cluster_title}} »</h2>
+ <div class="widget-wrapper">
+ <div class="widget-wrap">
+ <!--div class="widget recherche">
+ <h3><a href="#">RECHERCHE</a></h3>
+ <div class="widget-inner">
+ <form action="#" method="">
+ <p class="clearfix">
+ <input type="text" name="" placeholder="Rechercher" />
+ <input type="submit" title="Rechercher" value="" />
+ </p>
+ </form>
+ </div>
+ </div--><!-- recherche -->
+
+ <div class="widget filtre">
+ <h3><a href="#">FILTRES</a></h3>
+ <div class="widget-inner">
+ <form id="ajax3" method="post" action="{{request.get_full_path}}" class="filtre-date">{% csrf_token %}
+ <input type="hidden" name="filtre" value="ok">
+ <p>
+ <label for="">De :</label>
+ <input type="text" id="pickeddatebegincluster" name="from_date" class="dateBegin" value="07/01/2007" />
+ </p>
+ <p>
+ <label for="">à :</label>
+ <input type="text" id="pickeddateendcluster" name="to_date" class="dateEnd" value="12/01/2012"/>
+ </p>
+ <!--/form-->
+ <h4>Catégories :</h4>
+ <!--form action="#" class="filtre-categorie"-->
+ <p><input type="checkbox" name="categories" id="categorie1" value="International" class="checkbox_category"/> <label for="">International</label> </p>
+ <p><input type="checkbox" name="categories" id="categorie2" value="France" class="checkbox_category"/> <label for="">France</label> </p>
+ <p><input type="checkbox" name="categories" id="categorie3" value="Economie" class="checkbox_category"/> <label for="">Economie</label> </p>
+ <p><input type="checkbox" name="categories" id="categorie4" value="Culture" class="checkbox_category" /> <label for="">Culture</label> </p>
+ </form>
+ </div>
+ </div><!-- filtre -->
+ <div class="widget links">
+ <h3><a href="#">DOSSIER ASSOCIES</a></h3>
+ <div class="widget-inner">
+ <ul>
+ <li><a href="#">« Corruption »</a></li>
+ <li><a href="#">« Corruption »</a></li>
+ <li><a href="#">« Corruption »</a></li>
+ <li><a href="#">« Corruption »</a></li>
+ </ul>
+ </div>
+ </div><!-- links -->
+ </div>
+ </div>
+ </div>
+ {% endblock %}
\ No newline at end of file