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
aa499615
Commit
aa499615
authored
Mar 23, 2012
by
Serge S. Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TODO update, doc fix.
parent
4d165022
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
TODO.txt
TODO.txt
+12
-0
quickstart.rst
doc/quickstart.rst
+2
-2
No files found.
TODO.txt
View file @
aa499615
...
@@ -3,10 +3,20 @@
...
@@ -3,10 +3,20 @@
- Calendar - add validation for time without seconds (automatically add seconds)
- Calendar - add validation for time without seconds (automatically add seconds)
- Model Admin
- Model Admin
- Ability to sort by fields that are not visible?
- Ability to sort by fields that are not visible?
- Exclude for list columns
- Exclude for form fields
- Save and add another
- List display callables
- Built-in filtering support
- Configurable operations (=, >, <, etc)
- Callable operations
- Custom paginator class?
- Custom CSS/JS in admin interface
- SQLA Model Admin
- SQLA Model Admin
- Automatic required validator if field is not nullable
- Automatic required validator if field is not nullable
- Validation of the joins in the query
- Validation of the joins in the query
- Automatic joined load for foreign keys
- Automatic joined load for foreign keys
- Through the hint
- Built-in filtering support
- Built-in filtering support
- Many2Many support
- Many2Many support
- WYSIWYG editor support
- WYSIWYG editor support
...
@@ -14,3 +24,5 @@
...
@@ -14,3 +24,5 @@
- Header title
- Header title
- Mass-delete functionality
- Mass-delete functionality
- Unit tests
- Unit tests
- Documentation
- Screenshots for quickstart
doc/quickstart.rst
View file @
aa499615
...
@@ -18,11 +18,11 @@ Here is absolutely valid administrative piece::
...
@@ -18,11 +18,11 @@ Here is absolutely valid administrative piece::
class MyAdminView(BaseView):
class MyAdminView(BaseView):
@expose('/')
@expose('/')
def index(self):
def index(self):
return
render_template('admin/myindex.html', view=self
)
return
self.render('admin/myindex.html'
)
@expose('/test/')
@expose('/test/')
def test(self):
def test(self):
return
render_template('admin/test.html', view=self
)
return
self.render('admin/test.html'
)
So, how does it help structuring administrative interface? With such building blocks, you're
So, how does it help structuring administrative interface? With such building blocks, you're
implementing reusable functional pieces that are highly customizable.
implementing reusable functional pieces that are highly customizable.
...
...
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