def save_html(self, data, suffix=''):
        """
        Saves the 'content' attribute of a form POST request for display as 
        HTML as part of a webpage
        """
        self.authored_html = data.POST['content']

        response = HTTPTemporaryRedirect()
        response.location = data.referrer
        return response