Several modifications in fed4fire UI + Slice creation is restricted under projects...
[unfold.git] / portal / projectrequestview.py
index 6b1bc7c..451469d 100644 (file)
@@ -119,6 +119,11 @@ class ProjectRequestView(LoginRequiredAutoLogoutView, ThemeView):
             # What kind of project name is valid?
             if (post['project_name'] is None or post['project_name'] == ''):
                 errors.append('Project name is mandatory')
+
+            # max project_name length is 10
+            if (len(post['project_name']) >10):
+                errors.append('Project name can be maximum 10 characters long')
+
             
             if not errors:
                 print "is_pi on auth_hrn = ", user_authority