blob: 848f5a1e9b613573bbd8140a7d6820b685d31fa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<!-- These templates are accessible in backend and frontend -->
<t t-name="Dialog">
<div role="dialog"
t-attf-class="modal o_legacy_dialog #{ technical ? ' o_technical_modal' : '' } #{ fullscreen ? ' o_modal_full': '' }"
tabindex="-1"
data-backdrop="static"
t-att-id="_.uniqueId('modal_')"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<header t-if="renderHeader" class="modal-header">
<h4 class="modal-title"><t t-raw="title"/><span class="o_subtitle text-muted small" t-esc="subtitle"/></h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" tabindex="-1">×</button>
</header>
<main class="modal-body"/>
<footer t-if="renderFooter" class="modal-footer"/>
</div>
</div>
</div>
</t>
</templates>
|