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
ff887bd7
Commit
ff887bd7
authored
Sep 13, 2012
by
Serge S. Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated documentation.
parent
589a238a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
base.py
flask_admin/model/base.py
+4
-3
No files found.
flask_admin/model/base.py
View file @
ff887bd7
...
...
@@ -79,11 +79,12 @@ class BaseModelView(BaseView, ActionsMixin):
two, you can do something like this::
class MyModelView(BaseModelView):
list_formatters = dict(price=lambda m, p: m.price*2)
list_formatters = dict(price=lambda
c,
m, p: m.price*2)
Callback function has following prototype::
def formatter(model, name):
def formatter(context, model, name):
# context is instance of jinja2.runtime.Context
# model is model instance
# name is property name
pass
...
...
@@ -673,7 +674,7 @@ class BaseModelView(BaseView, ActionsMixin):
Returns value to be displayed in list view
:param context:
Jinja2 context
:py:class:`jinja2.runtime.Context`
:param model:
Model instance
:param name:
...
...
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