Projet

Général

Profil

0001-backoffice-blocks-and-fd-links-from-cards-home-54061.patch

Lauréline Guérin, 08 juin 2021 14:59

Télécharger (1,15 ko)

Voir les différences:

Subject: [PATCH] backoffice: blocks and fd links from cards home (#54061)

 wcs/backoffice/cards.py | 3 +++
 1 file changed, 3 insertions(+)
wcs/backoffice/cards.py
275 275
        r += htmltext('<div id="appbar">')
276 276
        r += htmltext('<h2>%s</h2>') % _('Card Models')
277 277
        r += htmltext('<span class="actions">')
278
        r += htmltext('<a href="../forms/data-sources/">%s</a>') % _('Data sources')
279
        if get_publisher().has_site_option('fields-blocks'):
280
            r += htmltext('<a href="../forms/blocks/">%s</a>') % _('Fields blocks')
278 281
        r += htmltext('<a href="categories/">%s</a>') % _('Categories')
279 282
        r += htmltext('<a href="import" rel="popup">%s</a>') % _('Import')
280 283
        r += htmltext('<a class="new-item" href="new" rel="popup">%s</a>') % _('New Card Model')
281
-