{ "info": { "author": "Christian Metts", "author_email": "xian@mintchaos.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ], "description": "What's this then?\n=================\n\nDjango Inlines is an app to let you use include other objects and special \nbits in your text fields.\n\nIt uses a registration style so it's easy to set up inlines for any of your apps\nor third party applications.\n\n\nExample:\n********\n\nRegister your inlines::\n\n from django_inlines import inlines\n from django_inlines.samples import YoutubeInline\n \n inlines.registry.register('youtube', YoutubeInline)\n\nIn your `entry.body`::\n\n
Check out my new video:
\n \n {{ youtube http://www.youtube.com/watch?v=RXJKdh1KZ0w }}\n\nIn your template::\n\n {% load inlines %}\n {% process_inlines entry.body %}\n\nOutput::\n\nCheck out my new video:
\n\n