Metadata-Version: 2.1
Name: fluke-yw
Version: 0.2.3
Summary: fluke for building website
Home-page: https://github.com/
Author: yan wang
Author-email: 1449349985@qq.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE


A plugin for django to quick start a website
# Live Demo
release soon
# Features

● Twitter Bootstrap based UI with theme support

● Better filter, date range, number range, etc.

● Full CRUD methods

● Built-in data export with xls, csv, xml and json format

# Get Started

    pip install fluke-yw
    pip install django-crispy-forms==1.7.2
    pip install django-formtools==2.1
    

# Install Requires

    django>=1.9

# usage

    import fluke
    from fluke import views
    
    
    class BaseSetting(object):
        enable_themes = True
        use_bootswatch = True
    
    
    class GlobalSettings(object):
        site_title = "fluke"
        site_footer = "fluke"
        menu_style = "accordion"
    
    fluke.site.register(views.BaseAdminView, BaseSetting)
    fluke.site.register(views.CommAdminView, GlobalSettings)
    
