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

« back to all changes in this revision

Viewing changes to ivle/webapp/groups/__init__.py

  • Committer: Matt Giuca
  • Date: 2010-02-25 03:05:04 UTC
  • Revision ID: matt.giuca@gmail.com-20100225030504-59fqcazt25646vf8
Project set page: Added 'Projects' breadcrumb, consistent with offering projects page. Fixes Launchpad bug #493913.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
from ivle.webapp.base.plugins import ViewPlugin, MediaPlugin
27
27
from ivle.webapp.base.xhtml import XHTMLView
28
28
from ivle.webapp.errors import NotFound
 
29
from ivle.webapp.admin.breadcrumbs import ProjectsBreadcrumb
29
30
 
30
31
class GroupsView(XHTMLView):
31
32
    """
48
49
    """
49
50
    views = [(ProjectSet, '+index', GroupsView)]
50
51
 
 
52
    breadcrumbs = {ProjectSet: ProjectsBreadcrumb}
 
53
 
51
54
    media = 'media'