--- a/src/ldt/ldt/ldt_utils/views/workspace.py Fri Jan 13 14:25:18 2012 +0100
+++ b/src/ldt/ldt/ldt_utils/views/workspace.py Fri Jan 13 16:57:01 2012 +0100
@@ -32,7 +32,7 @@
content_list = add_change_attr(request.user, Content.safe_objects.all()) #@UndefinedVariable
# get list of projects owned by the current user
- project_list = add_change_attr(request.user, Project.safe_objects.filter(owner=request.user)) #@UndefinedVariable
+ project_list = add_change_attr(request.user, Project.safe_objects.filter(owner=request.user).exclude(title__startswith='front')) #@UndefinedVariable
is_gecko = ((request.META['HTTP_USER_AGENT'].lower().find("firefox")) > -1);
@@ -74,7 +74,7 @@
def published_project(request):
# get list of all published projects
- project_list = Project.safe_objects.filter(state=2) #@UndefinedVariable
+ project_list = Project.safe_objects.filter(state=2).exclude(title__startswith='front') #@UndefinedVariable
# Search form
form = SearchForm()