~cr3/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to launchpadresults/context_processors.py

  • Committer: Marc Tardif
  • Date: 2010-10-05 22:04:03 UTC
  • Revision ID: marc.tardif@canonical.com-20101005220403-11n695o061rct89s
Added root page with all the necessary infrastructure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2010 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
 
4
from django.conf import settings
 
5
 
4
6
from launchpadresults.models import Anonymous
5
7
 
6
8
 
16
18
    """
17
19
    user = getattr(request, "user", Anonymous())
18
20
    return {
 
21
        "debug_mode": settings.DEBUG,
19
22
        "user": user,
20
23
        }