bbEditableDetailsPanel
====

Renders a edit form for a model by using angular schema form

By default the schema and form will be retrieved by calling the edit link on the model but it is
possible to customise the form by adding it to the configuration. In the example below for the edit
service form the type of the name field has been changed to textarea and the disabled field will
appear below it with it's default type.

```json
"customForm": [
{"key": "name", "type": "textarea"},
{"key": "min_length", "type": "number"},
"disabled"
]
```
