{ "info": { "author": "ikame", "author_email": "anler86@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries", "Topic :: Utilities" ], "description": "Django-Blackhole\n================\n\nDjango application that let's you work in your templates apart from having or not the corresponding views created. This is very useful if you (or a member of your project) are working in a template and don't want to get bothered by if the view of your template is not done or is in an incomplete state or you have to be logged in and so on.\nWith this plugin you can easily access the template you want to work on, set context data directly via the url or set context data via fixtures.\n\nFeatures\n--------\n\n- Design your template without having the corresponding view created.\n- Pass data to your template via the url.\n- Specify a json fixture file in the url with your context data.\n- Patch Django's url reverse to avoid those annoying url reverse errors when working solely in a template.\n\nTutorial\n--------\n\nIn order to start using this plugin, you need to:\n\n1. Add application to your INSTALLED_APPS:\n.. code-block:: python\n\n INSTALLED_APPS += ('blackhole',)\n\n2. Include plugin urls in your project urls:\n\n.. code-block:: python\n\n if settings.DEBUG:\n urlpatterns += patterns('', ('^_blackhole/', include('blackhole.urls'))\n\nWith that in place you should be able to access the url:\n\n``/_blackhole/templates/