Commit e11f37dc authored by Serge S. Koval's avatar Serge S. Koval

Readme and BSD license.

parent 62c384b1
Copyright (c) 2012 Serge S. Koval.
All rights reserved.
Redistribution and use in source and binary forms are permitted
provided that the above copyright notice and this paragraph are
duplicated in all such forms and that any documentation,
advertising materials, and other materials related to such
distribution and use acknowledge that the software was developed
by the <organization>. The name of the
University may not be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
Flask-AdminEx
=============
Contributors
------------
- `Serge S. Koval <https://github.com/MrJoes/>`_
Introduction
------------
This is library for building adminstrative interface on top of Flask framework.
Instead of providing simple scaffolding of the SQLAlchemy models, Flask-AdminEx
provides tools that can be used to build adminstrative interface of any complexity,
using consistent look and feel.
Example
-------
app = Flask(__name__)
admin = Admin()
admin.add_view(ModelView(User, db.session))
admin.add_view(GalleryManager(name='Photos', category='Cats'))
admin.setup_app(app)
Documentation
-------------
Flask-AdminEx is extensively documented, you can find documentation `here <http://readthedocs.org/docs/flask-adminex>`_.
Examples
--------
Library comes with three examples, you can find them in `examples` directory.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment