pytask/taskapp/context_processors.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 01 Feb 2011 23:47:23 +0530
changeset 551 208c4d591b55
parent 537 f285333bc66d
permissions -rwxr-xr-x
Allow ampersands in tags.

"""Module containing the context processors for taskapp.
"""


__authors__ = [
    '"Madhusudan.C.S" <madhusudancs@fossee.in>',
    ]


from pytask.helpers import configuration as config_settings


def configuration(request):
    """Context processor that puts all the necessary configuration
    related variables to every RequestContext'ed template.
    """

    return {
      'TASK_CLAIM_ENABLED': config_settings.TASK_CLAIM_ENABLED,
      }