fsbraun / djangocms-blog

django CMS blog application - Support for multilingual posts, placeholders, social network meta tags and configurable apphooks
https://djangocms-blog.readthedocs.io
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

Make tags optional #9

Open macolo opened 3 weeks ago

macolo commented 3 weeks ago

When installing djangocms-blog like this:

INSTALLED_APPS = [
...
   'djangocms_blog',
...
]

The following error happens:

root@cfa73357aa68:/app# ./manage.py migrate SystemCheckError: System check identified some issues:

ERRORS: djangocms_blog.LatestPostsPlugin.tags: (fields.E300) Field defines a relation with model 'Tag', which is either not installed, or is abstract. djangocms_blog.Post.tags: (fields.E300) Field defines a relation with model 'Tag', which is either not installed, or is abstract.

I'd expect any such dependencies to be optional.