My company released a cool open-source plugin named DjangoCMS FAQ that you can use in your websites a few weeks ago, let me describe it:
Install
The project is on pypi, so just use pip!
python3 -m pip install djangocms-faq
Features
FAQ Plugins
- Create a
FaqContainerPlugin that have a name, and can only containFaqQuestionPlugins that have a name (the question) and keywords! - Create answers as
TextPlugin,ImagePluginorVideoPlugininside theFaqQuestionPlugins (this can be easily extended using the settings of your project)! - Here's a small gif (better video here in the readme):
FAQ Search Plugin
- Create a
FaqSearchPluginthat have a name, select all theFaqContainersthat this instance will search into, and put it on any page on your site! - Here's a small gif (better video here in the readme):
Settings
- If you don't need the
FaqSearchyou can set theDJANGOCMS_FAQ_ENABLE_APIvariable toFalsein your settings. - You can add as many Plugins as you want in the
FaqQuestionplugins using theDJANGOCMS_FAQ_ANSWER_PLUGINSlist in your settings. - If you don't wanna show the keywords in the questions, just put this var to
False:DJANGOCMS_FAQ_SHOW_KEYWORDS_QUESTION. - And if you don't want to show the keywords in the
FaqSearchPlugin answers then put this toFalsein your settings :DJANGOCMS_FAQ_SHOW_KEYWORDS_ANSWER.
Top comments (0)