def create_site(self, form): site = Site(name=form.cleaned_data["name"], domain=form.cleaned_data["domain"]) site.save() return site