Projet

Général

Profil

0002-workflows-complete-breadcrum-in-inspect-view.patch

Lauréline Guérin, 30 juin 2020 22:42

Télécharger (971 octets)

Voir les différences:

Subject: [PATCH 2/2] workflows: complete breadcrum in inspect view

 wcs/admin/workflows.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
wcs/admin/workflows.py
1584 1584
    def inspect(self):
1585 1585
        self.html_top('%s - %s' % (_('Workflow'), self.workflow.name))
1586 1586
        r = TemplateIO(html=True)
1587
        r += htmltext('<h2>%s</h2>') % self.workflow.name
1588

  
1587
        get_response().breadcrumb.append(('inspect', _('Inspect')))
1589 1588
        r += htmltext('<h2>%s</h2>') % _('Workflow Functions')
1590 1589
        r += htmltext('<ul>')
1591 1590
        for key, label in (self.workflow.roles or {}).items():
1592
-