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
11bb8670
Commit
11bb8670
authored
Nov 28, 2013
by
Davide Silvestri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed old row-fluid css selector from examples templates
parent
24a5704d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
index.html
examples/simple/templates/admin/index.html
+14
-14
index.html
examples/sqla/templates/admin/index.html
+2
-2
No files found.
examples/simple/templates/admin/index.html
View file @
11bb8670
{% extends 'admin/master.html' %}
{% block body %}
{{ super() }}
<div
class=
"row
-fluid
"
>
<h1>
Flask-Admin example
</h1>
<p
class=
"lead"
>
Simple admin views, not related to models.
</p>
<p>
This example shows how to add your own views to the admin interface. The views do not have to be associated
to any of your models, and you can fill them with whatever content you want.
</p>
<p>
By adding custom views to the admin interface, they become accessible through the
<em>
navbar
</em>
at the top.
</p>
<a
class=
"btn btn-primary"
href=
"/"
><i
class=
"icon-arrow-left icon-white"
></i>
Back
</a>
<div
class=
"row
col-md-10 col-md-offset-1
"
>
<h1>
Flask-Admin example
</h1>
<p
class=
"lead"
>
Simple admin views, not related to models.
</p>
<p>
This example shows how to add your own views to the admin interface. The views do not have to be associated
to any of your models, and you can fill them with whatever content you want.
</p>
<p>
By adding custom views to the admin interface, they become accessible through the
<em>
navbar
</em>
at the top.
</p>
<a
class=
"btn btn-primary"
href=
"/"
><i
class=
"icon-arrow-left icon-white"
></i>
Back
</a>
</div>
{% endblock body %}
\ No newline at end of file
{% endblock body %}
examples/sqla/templates/admin/index.html
View file @
11bb8670
{% extends 'admin/master.html' %}
{% block body %}
{{ super() }}
<div
class=
"row
-fluid
"
>
<div
class=
"row
col-md-10 col-md-offset-1
"
>
<h1>
Flask-Admin example
</h1>
<p
class=
"lead"
>
Basic SQLAlchemy model views.
...
...
@@ -14,4 +14,4 @@
</p>
<a
class=
"btn btn-primary"
href=
"/"
><i
class=
"icon-arrow-left icon-white"
></i>
Back
</a>
</div>
{% endblock body %}
\ No newline at end of file
{% endblock body %}
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