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
cd25c6fc
Commit
cd25c6fc
authored
Jan 10, 2013
by
Artem Serga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#6 - Extra place to pass helpers to template
parent
2e794e94
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
form.py
flask_admin/form.py
+5
-4
No files found.
flask_admin/form.py
View file @
cd25c6fc
import
time
import
datetime
from
wtforms
import
fields
,
widgets
from
flask.globals
import
_request_ctx_stack
from
flask.ext
import
wtf
from
wtforms
import
fields
,
widgets
from
flask.ext.admin.babel
import
gettext
,
ngettext
from
flask.ext.admin
import
helpers
as
h
class
BaseForm
(
wtf
.
Form
):
...
...
@@ -153,7 +152,9 @@ class RenderTemplateWidget(object):
kwargs
.
update
({
'field'
:
field
,
'_gettext'
:
gettext
,
'_ngettext'
:
ngettext
})
'_ngettext'
:
ngettext
,
'h'
:
h
,
})
template
=
jinja_env
.
get_template
(
self
.
template
)
return
template
.
render
(
kwargs
)
...
...
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