All Projects → avelino → bottle-admin

avelino / bottle-admin

Licence: MIT License
Simple and extensible administrative interface framework for Bottle

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
Makefile
30231 projects

bottle-admin

Build Status Coverage Status

Simple and extensible administrative interface framework for Bottle, based on the bottle-boilerplate. Bottle-admin uses the project and app structures from bottle-boilerplate.

How to use

Install bottle-admin

pip install git+git://github.com/avelino/bottle-admin.git@master

Start your project and app with bottle-boilerplate

bottle-boilerplate startproject YOUR-PROJECT
cd YOUR-PROJECT
python manage.py startapp YOUR-APP

Edit the manage.py file and add the following line:

from bottle_admin import site
site.setup(engine)

To register your SQLAlchemy models for using inside admin:

site.register(YourModel)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].