list_row_actions Row action cell with edit/remove/etc buttons
...
...
@@ -51,8 +54,8 @@ Customizing templates
You can override any used template in your Flask application by creating template with same name and relative path in your main `templates` directory.
For example, if you want to override `admin/master.html`, create `admin/templates/admin/master.html` in your application and it will be used instead of
original `admin/master.html` found in Flask-Admin package.
If you need to override master template, you can pass template name to the `Admin` constructor::
If you don't want to replace template completely, you can create new template, derive it from existing template, override one or more blocks and
tell Flask-Admin to use it. For model view, there is `list_template` and related properties.