Commit fd20c06e authored by PJ Janse van Rensburg's avatar PJ Janse van Rensburg

Update docs.

parent 2e343b39
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
<ul> <ul>
<li><a href="http://flask.pocoo.org/" target="_blank">Flask</a></li> <li><a href="http://flask.pocoo.org/" target="_blank">Flask</a></li>
<li><a href="http://github.com/flask-admin/flask-admin" target="_blank">Flask-Admin @ github</a></li> <li><a href="http://github.com/flask-admin/flask-admin" target="_blank">Flask-Admin @ github</a></li>
<li><a href="http://examples.flask-admin.org/" target="_blank">Flask-Admin Examples</a></li>
</ul> </ul>
<a class="github" href="http://github.com/flask-admin/flask-admin" target="_blank"><img style="position: fixed; top: 0; right: 0; border: 0;" <a class="github" href="http://github.com/flask-admin/flask-admin" target="_blank"><img style="position: fixed; top: 0; right: 0; border: 0;"
......
...@@ -164,7 +164,7 @@ Image handling also requires you to have `Pillow <https://pypi.python.org/pypi/P ...@@ -164,7 +164,7 @@ Image handling also requires you to have `Pillow <https://pypi.python.org/pypi/P
installed if you need to do any processing on the image files. installed if you need to do any processing on the image files.
Have a look at the example at Have a look at the example at
https://github.com/flask-admin/Flask-Admin/tree/master/examples/forms. https://github.com/flask-admin/Flask-Admin/tree/master/examples/forms-files-images.
If you are using the MongoEngine backend, Flask-Admin supports GridFS-backed image and file uploads through WTForms fields. Documentation can be found at :mod:`flask_admin.contrib.mongoengine.fields`. If you are using the MongoEngine backend, Flask-Admin supports GridFS-backed image and file uploads through WTForms fields. Documentation can be found at :mod:`flask_admin.contrib.mongoengine.fields`.
...@@ -544,4 +544,3 @@ While the wrapped function should accept only one parameter - `ids`:: ...@@ -544,4 +544,3 @@ While the wrapped function should accept only one parameter - `ids`::
raise raise
flash(gettext('Failed to approve users. %(error)s', error=str(ex)), 'error') flash(gettext('Failed to approve users. %(error)s', error=str(ex)), 'error')
...@@ -23,9 +23,9 @@ because they let you group together all of the usual ...@@ -23,9 +23,9 @@ because they let you group together all of the usual
*Create, Read, Update, Delete* (CRUD) view logic into a single, self-contained *Create, Read, Update, Delete* (CRUD) view logic into a single, self-contained
class for each of your models. class for each of your models.
**What does it look like?** At http://examples.flask-admin.org/ you can see **What does it look like?** Clone the `GitHub repository <https://github.com/flask-admin/flask-admin>`_
some examples of Flask-Admin in action, or browse through the `examples/` and run the provided examples locally to get a feel for Flask-Admin. There are several to choose from
directory in the `GitHub repository <https://github.com/flask-admin/flask-admin>`_. in the `examples` directory.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
......
...@@ -463,7 +463,7 @@ list_row_actions Row action cell with edit/remove/etc buttons ...@@ -463,7 +463,7 @@ list_row_actions Row action cell with edit/remove/etc buttons
empty_list_message Message that will be displayed if there are no models found empty_list_message Message that will be displayed if there are no models found
======================= ============================================ ======================= ============================================
Have a look at the `layout` example at https://github.com/flask-admin/flask-admin/tree/master/examples/layout Have a look at the `layout` example at https://github.com/flask-admin/flask-admin/tree/master/examples/custom-layout
to see how you can take full stylistic control over the admin interface. to see how you can take full stylistic control over the admin interface.
Environment Variables Environment Variables
......
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