`admin/model/create.html` and `admin/model/edit.html` are used to display model creation editing forms respectively. They don't contain any custom
blocks and if you want to change something, you can do it using any of the blocks found in `admin/master.html`.
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 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.