Rapid Django ============ A set of opionated tools for rapid development of enterprise CRUD portals. Rapid Django generates CRUD pages and menus, based on a simple to use registry of models, forms and views. How to Use ========== Add the 'rapid' application to your installed apps, and run a database migration. Create a 'base.html' template that will be used by the CRUD generator. A minimum template looks as following: :: {% load rapid_menu %} {% menu request %} {% block body %}{% endblock %}