Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
37c81323
Commit
37c81323
authored
Aug 27, 2012
by
Serge S. Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bumped version
parent
c30802d5
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
11 deletions
+4
-11
TODO.txt
TODO.txt
+3
-4
simple.py
examples/peewee/simple.py
+0
-5
__init__.py
flask_admin/__init__.py
+0
-1
setup.py
setup.py
+1
-1
No files found.
TODO.txt
View file @
37c81323
...
...
@@ -6,20 +6,19 @@
- Reduce number of parameters passed to list view
- Filters
- 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
- Ability to sort by fields that are not visible?
- List display callables?
- SQLA Model Admin
- Postprocess sort columns - do not resolve to attributes in runtime
- Many2Many support
- Verify if it is working properly
- WYSIWYG editor support?
- File admin
- Header title
- Mass-delete functionality
- File size restriction
- Unit tests
- Form generation tests
- Inline form generation tests
- Documentation
- Add all new stuff
- Fixed stylesheet
examples/peewee/simple.py
View file @
37c81323
...
...
@@ -67,11 +67,6 @@ class PostAdmin(peeweemodel.ModelView):
'date'
,
User
.
username
)
@
admin
.
action
(
'merge'
,
'Merge'
,
'Are you sure you want to merge selected models?'
)
def
action_combine
(
self
,
ids
):
pass
@
app
.
route
(
'/'
)
def
index
():
...
...
flask_admin/__init__.py
View file @
37c81323
from
.base
import
expose
,
Admin
,
BaseView
,
AdminIndexView
from
.actions
import
action
setup.py
View file @
37c81323
...
...
@@ -17,7 +17,7 @@ def desc():
setup
(
name
=
'Flask-Admin'
,
version
=
'1.0.
1
'
,
version
=
'1.0.
2
'
,
url
=
'https://github.com/mrjoes/flask-admin/'
,
license
=
'BSD'
,
author
=
'Serge S. Koval'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment