equal
deleted
inserted
replaced
83 params = dicts.merge(params, new_params) |
83 params = dicts.merge(params, new_params) |
84 |
84 |
85 super(View, self).__init__(params=params) |
85 super(View, self).__init__(params=params) |
86 |
86 |
87 # register the role with the group_view |
87 # register the role with the group_view |
88 self._params['group_view'].registerRole(self._params['module_name'], self) |
88 self._params['group_view'].registerRole(self._logic.role_name, self) |
89 |
89 |
90 # create and store the special form for invited users |
90 # create and store the special form for invited users |
91 updated_fields = { |
91 updated_fields = { |
92 'link_id': forms.CharField(widget=widgets.ReadOnlyInput(), |
92 'link_id': forms.CharField(widget=widgets.ReadOnlyInput(), |
93 required=False)} |
93 required=False)} |