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
5ed6dccf
Commit
5ed6dccf
authored
Aug 14, 2015
by
Paul Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #980 from litnimax/master
Fix bug with details view tab.
parents
05d18308
58bb50f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
edit.html
flask_admin/templates/bootstrap2/admin/model/edit.html
+5
-0
edit.html
flask_admin/templates/bootstrap3/admin/model/edit.html
+5
-0
No files found.
flask_admin/templates/bootstrap2/admin/model/edit.html
View file @
5ed6dccf
...
@@ -24,6 +24,11 @@
...
@@ -24,6 +24,11 @@
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"javascript:void(0)"
>
{{ _gettext('Edit') }}
</a>
<a
href=
"javascript:void(0)"
>
{{ _gettext('Edit') }}
</a>
</li>
</li>
{%- if admin_view.can_view_details -%}
<li>
<a
href=
"{{ get_url('.details_view', id=model.id, url=return_url) }}"
>
{{ _gettext('View Record') }}
</a>
</li>
{%- endif -%}
</ul>
</ul>
{% endblock %}
{% endblock %}
...
...
flask_admin/templates/bootstrap3/admin/model/edit.html
View file @
5ed6dccf
...
@@ -24,6 +24,11 @@
...
@@ -24,6 +24,11 @@
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"javascript:void(0)"
>
{{ _gettext('Edit') }}
</a>
<a
href=
"javascript:void(0)"
>
{{ _gettext('Edit') }}
</a>
</li>
</li>
{%- if admin_view.can_view_details -%}
<li>
<a
href=
"{{ get_url('.details_view', id=model.id, url=return_url) }}"
>
{{ _gettext('View Record') }}
</a>
</li>
{%- endif -%}
</ul>
</ul>
{% endblock %}
{% endblock %}
...
...
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