def index(self, **kwargs): """Display the upload form. :rtype: Dict :returns: legal_wording XHTML legal wording for rendering support_email An help contact address upload_form The :class:`~mediacore.forms.uploader.UploadForm` instance form_values ``dict`` form values, if any """ support_emails = request.settings['email_support_requests'] support_emails = email.parse_email_string(support_emails) support_email = support_emails and support_emails[0] or None return dict( legal_wording=request.settings['wording_user_uploads'], support_email=support_email, upload_form=upload_form, form_values=kwargs, )
def index(self, **kwargs): """Display the upload form. :rtype: Dict :returns: legal_wording XHTML legal wording for rendering support_email An help contact address upload_form The :class:`~mediacore.forms.uploader.UploadForm` instance form_values ``dict`` form values, if any """ support_emails = request.settings['email_support_requests'] support_emails = email.parse_email_string(support_emails) support_email = support_emails and support_emails[0] or None return dict( legal_wording = request.settings['wording_user_uploads'], support_email = support_email, upload_form = upload_form, form_values = kwargs, )