{ "info": { "author": "Django Radonich-Camp", "author_email": "django@emergeinteractive.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "=====\ndjango-richcontentblocks\n=====\n\nVery simple CMS-like content blocks for use in a django project. \n\nFeatures:\n\n1. Admin interface for creating/managing content blocks (including a rich text editor)\n\n2. Template tag for retrieving/displaying content block in a django project template. Django cache is leveraged, when possible, in loading content block.\n\nInspiration and more full featured version: django-tinycontent_\n\nInstallation\n------------\nRun: ``pip install django-richcontentblocks``\n\nQuick start\n-----------\n1. Follow configuration instructions for ckeditor_ (skip this step if ckeditor is already configured).\n\n2. Run migrations:: \n\n manage.py migrate\n\n3. Add \"richcontent\" to your INSTALLED_APPS setting like this::\n\n INSTALLED_APPS = (\n ...\n 'richcontentblocks',\n )\n\nYou should now have an admin tool with the ability to create rich content blocks.\n\nUsage in template\n------------------\nAn example of loading a rich content block, with a key value of ``my-block`` in a template::\n\n {% load rich_content_block_tags %}\n