Commit | Line | Data |
---|---|---|
0ba28d89 | 1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | from django.shortcuts import render_to_response | |
4 | from django.template import Context, RequestContext | |
5 | ||
6 | def home(request): | |
7 | """Page d'accueil du site""" | |
8 | c = { | |
9 | } | |
10 | return render_to_response("home.html", Context(c), context_instance = RequestContext(request)) |