有什么方法可以在 Wagtail CMS 中将图像组织到文件夹中?
Any way to organize images into folders in Wagtail CMS?
我正在尝试使用 Django CMS Wagtail。通过管理界面上传的图片都去同一个地方,似乎没有办法组织图像,除非通过标记它们。有什么方法可以将它们组织到文件夹中或按上传日期搜索它们吗?
此外,至少在 Wagtail 演示安装上的图像搜索功能,如果按标签名称搜索(它确实适用于标题字段中的搜索词),则不会提取任何结果。
如有任何有关如何在 Wagtail 中组织图像的建议,我们将不胜感激!
Wagtail 1.4 引入了 Collections 的概念,这是他们解决此需求的方式:
Images and documents can now be organised into collections, set up by
administrators through the Settings -> Collections menu item. User
permissions can be set either globally (on the ‘Root’ collection) or
on individual collections, allowing different user groups to keep
their media items separated.
不要认为你可以通过标签搜索...
如果您需要的不仅仅是平面文件夹结构,还有这个项目:
https://github.com/anteatersa/Wagtail-Image-Folders
这是内置 wagtailimages
应用程序的替代品。不过我自己没试过。
我正在尝试使用 Django CMS Wagtail。通过管理界面上传的图片都去同一个地方,似乎没有办法组织图像,除非通过标记它们。有什么方法可以将它们组织到文件夹中或按上传日期搜索它们吗?
此外,至少在 Wagtail 演示安装上的图像搜索功能,如果按标签名称搜索(它确实适用于标题字段中的搜索词),则不会提取任何结果。
如有任何有关如何在 Wagtail 中组织图像的建议,我们将不胜感激!
Wagtail 1.4 引入了 Collections 的概念,这是他们解决此需求的方式:
Images and documents can now be organised into collections, set up by administrators through the Settings -> Collections menu item. User permissions can be set either globally (on the ‘Root’ collection) or on individual collections, allowing different user groups to keep their media items separated.
不要认为你可以通过标签搜索...
如果您需要的不仅仅是平面文件夹结构,还有这个项目:
https://github.com/anteatersa/Wagtail-Image-Folders
这是内置 wagtailimages
应用程序的替代品。不过我自己没试过。