Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjoes committed Aug 27, 2012
1 parent c30802d commit 37c8132
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
7 changes: 3 additions & 4 deletions TODO.txt
Expand Up @@ -6,20 +6,19 @@
- Reduce number of parameters passed to list view - Reduce number of parameters passed to list view
- Filters - Filters
- Use table to draw filters so column names will line up? - Use table to draw filters so column names will line up?
- Custom filters for date fields?
- Change boolean filter to True/False instead of Yes/No - Change boolean filter to True/False instead of Yes/No
- Ability to sort by fields that are not visible? - Ability to sort by fields that are not visible?
- List display callables? - List display callables?
- SQLA Model Admin - SQLA Model Admin
- Postprocess sort columns - do not resolve to attributes in runtime - Postprocess sort columns - do not resolve to attributes in runtime
- Many2Many support
- Verify if it is working properly
- WYSIWYG editor support? - WYSIWYG editor support?
- File admin - File admin
- Header title - Header title
- Mass-delete functionality
- File size restriction - File size restriction
- Unit tests - Unit tests
- Form generation tests - Form generation tests
- Inline form generation tests
- Documentation - Documentation
- Add all new stuff - Add all new stuff
- Fixed stylesheet

5 changes: 0 additions & 5 deletions examples/peewee/simple.py
Expand Up @@ -67,11 +67,6 @@ class PostAdmin(peeweemodel.ModelView):
'date', 'date',
User.username) User.username)


@admin.action('merge',
'Merge',
'Are you sure you want to merge selected models?')
def action_combine(self, ids):
pass


@app.route('/') @app.route('/')
def index(): def index():
Expand Down
1 change: 0 additions & 1 deletion flask_admin/__init__.py
@@ -1,2 +1 @@
from .base import expose, Admin, BaseView, AdminIndexView from .base import expose, Admin, BaseView, AdminIndexView
from .actions import action
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -17,7 +17,7 @@ def desc():


setup( setup(
name='Flask-Admin', name='Flask-Admin',
version='1.0.1', version='1.0.2',
url='https://github.com/mrjoes/flask-admin/', url='https://github.com/mrjoes/flask-admin/',
license='BSD', license='BSD',
author='Serge S. Koval', author='Serge S. Koval',
Expand Down

0 comments on commit 37c8132

Please sign in to comment.