diff options
| author | Luke Macken <lmacken@redhat.com> | 2008-06-27 23:10:56 -0400 |
|---|---|---|
| committer | Luke Macken <lmacken@redhat.com> | 2008-06-27 23:10:56 -0400 |
| commit | 1ebf48254dce0e6f9f2abbee4d1cb7a4cc7a426a (patch) | |
| tree | 835ae89ed7b5ae8e74ac716109957c1146b37a99 | |
| parent | a1bace833d421f20642d5077a03d769ffb1cd355 (diff) | |
| download | manas-1ebf48254dce0e6f9f2abbee4d1cb7a4cc7a426a.tar.gz manas-1ebf48254dce0e6f9f2abbee4d1cb7a4cc7a426a.tar.xz manas-1ebf48254dce0e6f9f2abbee4d1cb7a4cc7a426a.zip | |
Add the LatestIdeas widget to our Global
| -rw-r--r-- | manas/lib/app_globals.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manas/lib/app_globals.py b/manas/lib/app_globals.py index 342c8cb..291d432 100644 --- a/manas/lib/app_globals.py +++ b/manas/lib/app_globals.py @@ -10,4 +10,5 @@ class Globals(object): initialization and is available during requests via the 'g' variable """ - pass + from manas.widgets import LatestIdeas + self.latest_ideas = LatestIdeas('latest_ideas') |
