[IMP] MIgrate toggle-active button to v13
Will translate this:
```xml
<div class="oe_button_box" name="button_box">
<button
class="oe_stat_button"
icon="fa-archive"
name="toggle_active"
type="object"
>
<field
name="active"
options='{"terminology": "archive"}'
widget="boolean_button"
/>
</button>
</div>
```
Into this:
```xml
<div class="oe_button_box" name="button_box">
<field name="active" invisible="1" />
<widget
name="web_ribbon"
title="Archived"
bg_color="bg-danger"
attrs="{'invisible': [('active', '=', True)]}"
/>
</div>
```
Whitespace is bad formatted, but that's a job for #41.
@Tecnativa TT25940