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
201fd37d
Commit
201fd37d
authored
Jul 25, 2015
by
Paul Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #958 from plaes/edit-improvements
Edit improvements
parents
85853a19
2cc08231
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
100 additions
and
90 deletions
+100
-90
details.html
flask_admin/templates/bootstrap2/admin/model/details.html
+51
-46
details.html
flask_admin/templates/bootstrap3/admin/model/details.html
+49
-44
No files found.
flask_admin/templates/bootstrap2/admin/model/details.html
100755 → 100644
View file @
201fd37d
...
...
@@ -10,6 +10,11 @@
<li>
<a
href=
"{{ get_url('.create_view', url=return_url) }}"
>
{{ _gettext('Create') }}
</a>
</li>
{%- if admin_view.can_edit -%}
<li>
<a
href=
"{{ get_url('.edit_view', id=get_pk_value(model), url=return_url) }}"
>
{{ _gettext('Edit') }}
</a>
</li>
{%- endif -%}
<li
class=
"active"
>
<a
href=
"javascript:void(0)"
>
{{ _gettext('View Record') }}
</a>
</li>
...
...
flask_admin/templates/bootstrap3/admin/model/details.html
100755 → 100644
View file @
201fd37d
...
...
@@ -10,6 +10,11 @@
<li>
<a
href=
"{{ get_url('.create_view', url=return_url) }}"
>
{{ _gettext('Create') }}
</a>
</li>
{%- if admin_view.can_edit -%}
<li>
<a
href=
"{{ get_url('.edit_view', id=get_pk_value(model), url=return_url) }}"
>
{{ _gettext('Edit') }}
</a>
</li>
{%- endif -%}
<li
class=
"active"
>
<a
href=
"javascript:void(0)"
>
{{ _gettext('View Record') }}
</a>
</li>
...
...
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