pikhovkin / django-dash-ddx-catalog

Auxiliary Django forms for semi-automatic CRUD for dash-devextreme components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-dash-ddx-catalog

GitHub Actions PyPI PyPI - Python Version framework - Django PyPI - Django Version PyPI - License

Auxiliary Django forms for semi-automatic CRUD for dash-devextreme components

Installation

$ pip install django-dash-ddx-catalog

Usage

from dash_ddx_catalog.forms import DashDDXForm, DashDDXModelForm

from django import forms

from .models import MyModel


class SimpleForm(DashDDXForm):
    name = forms.CharField(label='Label name', max_length=255)
    ...


class SimpleModelForm(DashDDXModelForm):
    name = forms.CharField(label='Label name', max_length=255)
    ...
    
    class Meta:
        model = MyModel

License

MIT

About

Auxiliary Django forms for semi-automatic CRUD for dash-devextreme components

License:MIT License


Languages

Language:Python 100.0%