Skip to main content

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 data.

Project description

Coffee - Django Admin Tools

codecov Documentation Status

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.

Quicklinks

Why Coffee?

Plug and play - waste less time making views to manage your application's data.

Quick Install

INSTALLED_APPS = [
    # ...
    "coffee",
]
urlpatterns = [
    path("admin/", admin.site.urls),
    path("coffee/", include("coffee.urls")),
    path("api/", include("api.urls")),
]

Ready to Go!

Generate HTML which can be integrated into your frontend.

   <!-- http://localhost:8008/coffee/form/?app_name=api&model_name=Category&pk=5 -->

   <form
      action="/coffee/form/submit/?app_name=api&amp;model_name=Category"
      method="POST"
      class="coffee-form"
   >
      <div class="coffee-form-item">
         <label class="coffee-form-item-label" for="name">name</label
         ><textarea
               value="Frozen"
               name="name"
               id="name"
               type="text"
               class="coffee-form-item-input"
         >Frozen</textarea>
      </div>
      <input
         name="csrfmiddlewaretoken"
         value="lWqQXylYRShwQcRxbYCyxrTTOMci1Pv3MJ4MMYEqkK9NM8LIdNsb99AGOigpWR4t"
         type="hidden"
      /><button type="submit" class="coffee-form-submit">Update</button>
   </form>

How to Use

The model form can be used for existing instances of data or be used to create new instances of data.

/coffee/form/?app_name=&model_name=&pk=
  • app_name: The name of your Django application, e.g. api
  • model_name: The name of your application model, e.g. ShoppingItem. Note, this property is case sensitive.
  • pk: Optional. The relevant primary key for your selected model.

Feedback

This project won't move very fast and I've built it mostly for my own projects, if you'd like to contribute, get in touch!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-coffee-tools-0.1.14.tar.gz (25.6 kB view details)

Uploaded Source

File details

Details for the file django-coffee-tools-0.1.14.tar.gz.

File metadata

  • Download URL: django-coffee-tools-0.1.14.tar.gz
  • Upload date:
  • Size: 25.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for django-coffee-tools-0.1.14.tar.gz
Algorithm Hash digest
SHA256 89fd8e5673bf76b7beeb3262413936023e157ee4d32838000dbf8e1dbb1452e0
MD5 74d1f7a84fba05308f0e0431d31e9411
BLAKE2b-256 4021eb7eccdf97a5f3c2892b2e86ffcace1962686ee9718e7f690f6e00a1f10a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page