Esempio n. 1
0
  def post(self):
    name = self.cleaned_data['name']
    description = self.cleaned_data['description']
    tags = self.cleaned_data.get('tags', [])

    project = project_logic.handle_add_project(self.profile, name, description)
    tag_logic.handle_select_tags(project, tags)

    return http.HttpResponseRedirect(self.BASE_PATH)