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
c7951515
Commit
c7951515
authored
Jul 01, 2019
by
P.J. Janse van Rensburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'flt_name' -> 'arg_name'
parent
98fada77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
layout.html
flask_admin/templates/bootstrap2/admin/model/layout.html
+2
-2
layout.html
flask_admin/templates/bootstrap3/admin/model/layout.html
+2
-2
No files found.
flask_admin/templates/bootstrap2/admin/model/layout.html
View file @
c7951515
...
...
@@ -63,8 +63,8 @@
{% for flt_name, flt_value in filter_args.items() %}
<input
type=
"hidden"
name=
"{{ flt_name }}"
value=
"{{ flt_value }}"
>
{% endfor %}
{% for
flt_name, flt
_value in extra_args.items() %}
<input
type=
"hidden"
name=
"{{
flt_name }}"
value=
"{{ flt
_value }}"
>
{% for
arg_name, arg
_value in extra_args.items() %}
<input
type=
"hidden"
name=
"{{
arg_name }}"
value=
"{{ arg
_value }}"
>
{% endfor %}
{% if page_size != default_page_size %}
<input
type=
"hidden"
name=
"page_size"
value=
"{{ page_size }}"
>
...
...
flask_admin/templates/bootstrap3/admin/model/layout.html
View file @
c7951515
...
...
@@ -63,8 +63,8 @@
{% for flt_name, flt_value in filter_args.items() %}
<input
type=
"hidden"
name=
"{{ flt_name }}"
value=
"{{ flt_value }}"
>
{% endfor %}
{% for
flt_name, flt
_value in extra_args.items() %}
<input
type=
"hidden"
name=
"{{
flt_name }}"
value=
"{{ flt
_value }}"
>
{% for
arg_name, arg
_value in extra_args.items() %}
<input
type=
"hidden"
name=
"{{
arg_name }}"
value=
"{{ arg
_value }}"
>
{% endfor %}
{% if page_size != default_page_size %}
<input
type=
"hidden"
name=
"page_size"
value=
"{{ page_size }}"
>
...
...
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