backoffice: update form links on category pages (#38670)

This commit is contained in:
Frédéric Péters 2019-12-23 16:29:11 +01:00
parent f2a753f811
commit bdf5260566
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class CategoryPage(Directory):
r += htmltext('<h3>%s</h3>') % _('Forms in this category')
r += htmltext('<ul>')
for formdef in formdefs:
r += htmltext('<li><a href="../../forms/%s/">') % str(formdef.id)
r += htmltext('<li><a href="../../%s/">') % str(formdef.id)
r += formdef.name
r += htmltext('</a></li>')
if not formdefs: