|
27
|
1 |
{% extends "base.html" %} |
|
|
2 |
{% comment %} |
|
|
3 |
|
|
|
4 |
Main page of django_consultant's website. |
|
|
5 |
|
|
|
6 |
{% endcomment %} |
|
|
7 |
{% block head %} |
|
|
8 |
{{block.super}} |
|
|
9 |
<script type="text/javascript" src="{{ STATIC_URL }}libraries/jquery-1.6.4.min.js"></script> |
|
|
10 |
<script type="text/javascript" src="{{ STATIC_URL }}js/recherche.js"></script> |
|
|
11 |
<link rel="stylesheet" href="{{ STATIC_URL }}css/home.css" /> |
|
|
12 |
<link rel="stylesheet" href="{{ STATIC_URL }}css/article.css" /> |
|
|
13 |
{% endblock %} |
|
|
14 |
|
|
|
15 |
{% block body %} |
|
37
|
16 |
<body onLoad="showResults({{ request.session.json }});loadStreamgraph({{ request.session.jsonStreamgraph }}); "> |
|
27
|
17 |
{% endblock %} |
|
|
18 |
{% block recherche %} |
|
|
19 |
<div class="recherche-wrap"> |
|
|
20 |
|
|
|
21 |
<h1><img src="{{ STATIC_URL }}img/mediapart-by-periplus.jpg" alt="" /></h1> |
|
|
22 |
<form id="ajax1" method="post" action="/recherche/">{% csrf_token %} |
|
|
23 |
<input type="hidden" name="filtre" value="nok"> |
|
|
24 |
<input type="hidden" id="from_date" name="from_date" value="07/01/2007"/> |
|
37
|
25 |
<input type="hidden" id="to_date" name="to_date" value="12/01/2012"/> |
|
27
|
26 |
<p > |
|
|
27 |
<a href="#" class="photo"></a> |
|
|
28 |
<input name="recherche" placeholder="Rechercher" class="input-recherche" type="text" /> |
|
|
29 |
<input id="recherche_button" type="button" value="" class="recherche-submit"/> |
|
|
30 |
</p> |
|
|
31 |
</form> |
|
|
32 |
</div> |
|
|
33 |
{% endblock %} |
|
|
34 |
|
|
|
35 |
{% block contentleft %} |
|
37
|
36 |
{{block.super}} |
|
27
|
37 |
{% endblock %} |