Introduction to django-coffee-tools =============================================== ``django-coffee-tools`` provides a ready-to-use Django plugin which provides dynamic form generation for your Django models. These forms are intended to be integrated with your admin or management dashboard to allow easy management of your application's data. Installation ************ .. code-block:: python INSTALLED_APPS = [ # ... "coffee", ] .. code-block:: python urlpatterns = [ path("admin/", admin.site.urls), path("coffee/", include("coffee.urls")), path("api/", include("api.urls")), ] Examples ******** Generate HTML which can be integrated into your frontend. Model Form ###################################### .. code-block:: html
Model List ###################################### .. code-block:: html
id name
1 Fruit & Veg
3 Fridge & Deli
4 Bakery
5 Frozen
6 Pantry
7 Beer & Wine
8 Drinks
9 Health & Body
10 Household
11 Baby & Child
12 Pet
15 Meat & Seafood
.. toctree:: :maxdepth: 4 :caption: Contents: source/quickstart source/endpoints source/patterns source/faq source/limitations .. toctree:: :maxdepth: 4 :caption: API Documentation: source/coffee/coffee.exceptions source/coffee/coffee.contrib source/coffee/coffee.management Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search`