~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/projectservice.py

  • Committer: William Grant
  • Date: 2009-12-08 04:48:54 UTC
  • Revision ID: grantw@unimelb.edu.au-20091208044854-1nemu4568azzeh9r
Make the group admin UI a per-projectset view.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        req.store.flush()
56
56
    
57
57
        self.template = "templates/project_fragment.html"
58
 
        self.ctx['req'] = req
59
58
        self.ctx['project'] = new_project
 
59
        self.ctx['project_url'] = self._project_url(new_project)
60
60
 
61
61
        return {'success': True, 'projectset_id': self.context.id}
 
62
 
 
63
class ProjectRESTView(XHTMLRESTView):
 
64
    """Rest view for a project."""