first commit for v0.2
This commit is contained in:
parent
6ba03afc73
commit
1463854a45
143 changed files with 20775 additions and 2764 deletions
9
tracker/context_processors.py
Normal file
9
tracker/context_processors.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from tracker.models import Project
|
||||
|
||||
|
||||
def projects(request):
|
||||
|
||||
if hasattr(request, 'projects'):
|
||||
return {'projects': request.projects}
|
||||
else:
|
||||
return {}
|
Loading…
Add table
Add a link
Reference in a new issue