Projet

Général

Profil

0001-backoffice-make-file-workflow-option-work-in-popup-3.patch

Frédéric Péters, 24 octobre 2021 18:42

Télécharger (1012 octets)

Voir les différences:

Subject: [PATCH] backoffice: make file workflow option work in popup (#32854)

 wcs/admin/forms.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
wcs/admin/forms.py
651 651
        self.html_top(title=self.formdef.name)
652 652
        r = TemplateIO(html=True)
653 653
        get_response().filter['sidebar'] = self.get_sidebar()
654
        get_response().add_javascript(['jquery.js', 'widget_list.js', 'qommon.wysiwyg.js'])
654
        get_response().add_javascript(
655
            ['jquery.js', 'widget_list.js', 'qommon.wysiwyg.js', 'qommon.fileupload.js']
656
        )
655 657
        DateWidget.prepare_javascript()
656 658

  
657 659
        r += htmltext('<div id="appbar">')
658
-