blob: 9b6d6354ab455ebd65a69d519d10586483df2071 (
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
28
|
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="EditListPopup" owl="1">
<div role="dialog" class="modal-dialog">
<div class="popup popup-text">
<header class="title">
<t t-esc="props.title" />
</header>
<main class="list-lines" t-on-remove-item="removeItem"
t-on-create-new-item="createNewItem">
<t t-foreach="state.array" t-as="item" t-key="item._id">
<EditListInput item="item" />
</t>
</main>
<footer class="footer">
<div class="button confirm" t-on-click="confirm">
Ok
</div>
<div class="button cancel" t-on-click="cancel">
Cancel
</div>
</footer>
</div>
</div>
</t>
</templates>
|