Is there a good WikiField for django models?

Is there an easy way to add a “WikiField” to the model I have in my application?

I think the most important requirements are:

  • A text field that can be added to any model.
  • A simple wiki layout or editor widget that allows you to format text and conveniently insert links and images.
  • saves the history of changes with information about the author and easily allows you to return to the previous version.

Just to explain what I'm trying to do: imagine you have a bookstore app. Most of the book model data is taken from the store catalog. Now we would like to add a block of text, which is a wiki community, so that users can write a summary of the graph, for example.

+5
source share
1 answer

How about a combination of django-reversion and django-tinymce , or Markdown , if you prefer to write markdowns?

I have not seen any field types specifically for Wikis, but with those components that write one, it really does not cost too long.

+5
source

All Articles