Commit 11bb8670 authored by Davide Silvestri's avatar Davide Silvestri

removed old row-fluid css selector from examples templates

parent 24a5704d
{% extends 'admin/master.html' %} {% extends 'admin/master.html' %}
{% block body %} {% block body %}
{{ super() }} {{ super() }}
<div class="row-fluid"> <div class="row col-md-10 col-md-offset-1">
<h1>Flask-Admin example</h1> <h1>Flask-Admin example</h1>
<p class="lead"> <p class="lead">
Simple admin views, not related to models. Simple admin views, not related to models.
</p> </p>
<p> <p>
This example shows how to add your own views to the admin interface. The views do not have to be associated 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. to any of your models, and you can fill them with whatever content you want.
</p> </p>
<p> <p>
By adding custom views to the admin interface, they become accessible through the <em>navbar</em> at the top. By adding custom views to the admin interface, they become accessible through the <em>navbar</em> at the top.
</p> </p>
<a class="btn btn-primary" href="/"><i class="icon-arrow-left icon-white"></i> Back</a> <a class="btn btn-primary" href="/"><i class="icon-arrow-left icon-white"></i> Back</a>
</div> </div>
{% endblock body %} {% endblock body %}
\ No newline at end of file
{% extends 'admin/master.html' %} {% extends 'admin/master.html' %}
{% block body %} {% block body %}
{{ super() }} {{ super() }}
<div class="row-fluid"> <div class="row col-md-10 col-md-offset-1">
<h1>Flask-Admin example</h1> <h1>Flask-Admin example</h1>
<p class="lead"> <p class="lead">
Basic SQLAlchemy model views. Basic SQLAlchemy model views.
...@@ -14,4 +14,4 @@ ...@@ -14,4 +14,4 @@
</p> </p>
<a class="btn btn-primary" href="/"><i class="icon-arrow-left icon-white"></i> Back</a> <a class="btn btn-primary" href="/"><i class="icon-arrow-left icon-white"></i> Back</a>
</div> </div>
{% endblock body %} {% endblock body %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment