Projet

Général

Profil

0001-backoffice-workflow-action-form-div-and-padding-5665.patch

Lauréline Guérin, 24 septembre 2021 10:42

Télécharger (998 octets)

Voir les différences:

Subject: [PATCH] backoffice: workflow action form div and padding (#56656)

 wcs/forms/common.py | 4 ++++
 1 file changed, 4 insertions(+)
wcs/forms/common.py
622 622
                    r += htmltext('</div>')
623 623
            if not locked:
624 624
                r += htmltext(self.actions_workflow_messages())
625
                if form.widgets:
626
                    r += htmltext('<div class="section"><div>')
625 627
                r += form.render()
628
                if form.widgets:
629
                    r += htmltext('</div></div>')
626 630
                get_session().mark_visited_object(self.filled)
627 631

  
628 632
        if not locked:
629
-