Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Provides simple but efficient admin UI.

NotificationsYou must be signed in to change notification settings

jeanphix/Flask-Dashed

Repository files navigation

Introduction

https://secure.travis-ci.org/jeanphix/Flask-Dashed.png

Flask-Dashed provides tools for build simple and extensible admin interfaces.

Online demonstration:http://flask-dashed.jeanphi.fr/ (Github account required).

List view:

https://github.com/jeanphix/Flask-Dashed/raw/dev/docs/_static/screen.png

Form view:

https://github.com/jeanphix/Flask-Dashed/raw/dev/docs/_static/screen-edit.png

Installation

pip install Flask-Dashed

Minimal usage

Code:

from flask import Flaskfrom flask_dashed.admin import Adminapp = Flask(__name__)admin = Admin(app)if __name__ == '__main__':    app.run()

Sample application:http://github.com/jeanphix/flask-dashed-demo

Deal with security

Securing all module endpoints:

from flask import sessionbook_module = admin.register_module(BookModule, '/books', 'books',    'book management')@book_module.secure(http_code=401)def login_required():    return "user" in session

Securing specific module endpoint:

@book_module.secure_endpoint('edit', http_code=403)def check_edit_credential(view):    # I'm now signed in, may I modify the ressource?    return session.user.can_edit_book(view.object)

Organize modules

As admin nodes are registered into a "tree" it's quite easy to organize them.:

library = admin.register_node('/library', 'library', my library)book_module = admin.register_module(BookModule, '/books', 'books',    'book management', parent=library)

Navigation and breadcrumbs are automatically builds to feet your needs. Child module security will be inherited from parent one.

SQLALchemy extension

Code:

from flask_dashed.ext.sqlalchemy import ModelAdminModuleclass BookModule(ModelAdminModule):    model = Book    db_session = db.sessionbook_module = admin.register_module(BookModule, '/books', 'books',    'book management')

About

Provides simple but efficient admin UI.

Resources

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp