Akron | ca9bd98 | 2016-12-06 16:59:57 +0100 | [diff] [blame^] | 1 | {% extends 'admin/master.html' %} |
| 2 | {% block body %} |
| 3 | {{ super() }} |
| 4 | <div class="row"> |
| 5 | <div class="span10 offset1"> |
| 6 | <h1>Flask-Admin example</h1> |
| 7 | <p class="lead"> |
| 8 | Simple admin views, not related to models. |
| 9 | </p> |
| 10 | <p> |
| 11 | This example shows how to add your own views to the admin interface. The views do not have to be associated |
| 12 | to any of your models, and you can fill them with whatever content you want. |
| 13 | </p> |
| 14 | <p> |
| 15 | By adding custom views to the admin interface, they become accessible through the <em>navbar</em> at the top. |
| 16 | </p> |
| 17 | <a class="btn btn-primary" href="/"><i class="icon-arrow-left icon-white"></i> Back</a> |
| 18 | </div> |
| 19 | </div> |
| 20 | {% endblock body %} |