equal
deleted
inserted
replaced
284 class ManageAction(ManagersAction): |
284 class ManageAction(ManagersAction): |
285 id = 'manage' |
285 id = 'manage' |
286 title = _('manage') |
286 title = _('manage') |
287 order = 20 |
287 order = 20 |
288 |
288 |
|
289 class ManageAction(ManagersAction): |
|
290 id = 'siteinfo' |
|
291 title = _('info') |
|
292 order = 30 |
|
293 __select__ = match_user_groups('users','managers') |
|
294 |
289 |
295 |
290 from logilab.common.deprecation import class_moved |
296 from logilab.common.deprecation import class_moved |
291 from cubicweb.web.views.bookmark import FollowAction |
297 from cubicweb.web.views.bookmark import FollowAction |
292 FollowAction = class_moved(FollowAction) |
298 FollowAction = class_moved(FollowAction) |
293 |
299 |