def _new(self):
        results = self.form_result['social_network']

        print "Gonna make a new SocialNetwork"
        c.social_network = SocialNetwork(**results)
        print "New social_network %s" % c.social_network
        meta.Session.add(c.social_network)
        meta.Session.commit()

        h.flash("Social Network created")
        redirect_to(action='view', id=c.social_network.id)