Commit | Line | Data |
---|---|---|
6a6650bf OL |
1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | from django.template import Context, RequestContext | |
4 | from django.shortcuts import render_to_response | |
5 | ||
6 | def demo(request,): | |
7 | """ | |
8 | Page pour montrer la charte graphique de l'AUF | |
9 | """ | |
10 | breadcrumb = ( | |
11 | ("/" , "Accueil"), | |
12 | ("#" , "Demo charte graphique AUF"), | |
13 | ) | |
14 | c = {'breadcrumb' : breadcrumb} | |
15 | return render_to_response("skin/demo.html", | |
16 | Context(c), | |
17 | context_instance = RequestContext(request) | |
18 | ) | |
19 | ||
20 |