Compare commits

..

2 Commits

Author SHA1 Message Date
Frédéric Péters 937418f700 backoffice: add option to expand history pane by default (#87727)
gitea/wcs/pipeline/head There was a failure building this commit Details
2024-03-24 19:43:34 +01:00
Frédéric Péters 430f536f20 backoffice: add sidebar content options for cards (#87727) 2024-03-24 19:43:34 +01:00
2 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,6 @@ def test_blocks_category(pub):
def test_removed_block_in_form_fields_list(pub):
create_superuser(pub)
BlockDef.wipe()
FormDef.wipe()
formdef = FormDef()
formdef.name = 'form title'

View File

@ -2184,6 +2184,7 @@ def test_backoffice_download_as_zip(pub):
app = login(get_app(pub))
resp = app.get('/backoffice/management/form-title/%s/' % number31.id)
assert 'Download all files as .zip' not in resp
formdef.management_sidebar_items = self.get_default_management_sidebar_items()
formdef.management_sidebar_items.add('download-files')
formdef.store()
resp = app.get('/backoffice/management/form-title/%s/' % number31.id)