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
a8cc0ec5
Commit
a8cc0ec5
authored
Aug 09, 2020
by
Titanium Hocker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: delails view
parent
f9b4f11d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
details.html
flask_admin/templates/bootstrap4/admin/model/details.html
+11
-11
No files found.
flask_admin/templates/bootstrap4/admin/model/details.html
View file @
a8cc0ec5
...
...
@@ -4,29 +4,29 @@
{% block body %}
{% block navlinks %}
<ul
class=
"nav nav-tabs"
>
<li>
<a
href=
"{{ return_url }}"
>
{{ _gettext('List') }}
</a>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"{{ return_url }}"
>
{{ _gettext('List') }}
</a>
</li>
{%- if admin_view.can_create -%}
<li>
<a
href=
"{{ get_url('.create_view', url=return_url) }}"
>
{{ _gettext('Create') }}
</a>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"{{ get_url('.create_view', url=return_url) }}"
>
{{ _gettext('Create') }}
</a>
</li>
{%- endif -%}
{%- if admin_view.can_edit -%}
<li>
<a
href=
"{{ get_url('.edit_view', id=request.args.get('id'), url=return_url) }}"
>
{{ _gettext('Edit') }}
</a>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"{{ get_url('.edit_view', id=request.args.get('id'), url=return_url) }}"
>
{{ _gettext('Edit') }}
</a>
</li>
{%- endif -%}
<li
class=
"
active
"
>
<a
href=
"javascript:void(0)"
>
{{ _gettext('Details') }}
</a>
<li
class=
"
nav-item
"
>
<a
class=
"nav-link active disabled"
href=
"javascript:void(0)"
>
{{ _gettext('Details') }}
</a>
</li>
</ul>
{% endblock %}
{% block details_search %}
<div
class=
"
input-group
fa_filter_container col-lg-6"
>
<
span
class=
"input-group-addon"
>
{{ _gettext('Filter') }}
</span
>
<input
id=
"fa_filter"
type=
"text"
class=
"form-control"
>
<div
class=
"
form-inline
fa_filter_container col-lg-6"
>
<
label
for=
"fa_filter"
>
{{ _gettext('Filter') }}
</label
>
<input
id=
"fa_filter"
type=
"text"
class=
"
ml-3
form-control"
>
</div>
{% 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