mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
25 lines
633 B
XML
25 lines
633 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates id="template" xml:space="preserve">
|
|
|
|
<t t-name="Notification.reload">
|
|
<div class="o_notification_reload" t-if="widget.options.show_reload">
|
|
<a href="#" class="o_view_reload">
|
|
<span class="fa fa-refresh"/> Reload current view
|
|
</a>
|
|
</div>
|
|
</t>
|
|
|
|
<t t-extend="Notification">
|
|
<t t-jquery=".o_notification_content" t-operation="after">
|
|
<t t-call="Notification.reload"/>
|
|
</t>
|
|
</t>
|
|
|
|
<t t-extend="Warning">
|
|
<t t-jquery=".o_notification_content" t-operation="after">
|
|
<t t-call="Notification.reload"/>
|
|
</t>
|
|
</t>
|
|
|
|
</templates>
|