{ "info": { "author": "aleosd", "author_email": "osdalex@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Utilities" ], "description": "Django Text Chunks\n==================\n\nInsert blocks of text anywhere in in your template\n\nInstallation\n=============\n\nInstall package using pip\n\n::\n\n $ pip install django-textchunks\n\nBasic usage\n===========\n\nAdd the ``textchunks`` application to ``INSTALLED_APPS`` in your settings file (usually ``settings.py``)\n\n::\n\n INSTALLED_APPS = (\n ...\n 'textchunks',\n ...\n )\n\n\nSync database with ``./manage.py migrate``. After that, add textchunks using\ndjango admin interface and use them on your templates:\n\n.. code-block:: html\n\n {% load textchunks %}\n\n \n
\n