Return to API Reference.
Currently dummy form which is enough for fork page.
Form wizard which processes each step of external forking.
See also
Simple form which converts user into Team.
Note
User instance has to be set within a view:
def aview(request):
form = UserConvertToTeamForm(request.POST or None)
form.user = request.user
# ...
See also
Cleans confirm field. If checked and user attribute has been set, TeamManager‘s method convert_from_user is called.
Form providing ability to add user to the group. It is useful for users converted into Team to add new members.
Raises ValidationError if user is already member of given group or user does not exist.
Adds chosen user to the group.