-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtools.html
More file actions
34 lines (29 loc) · 964 Bytes
/
tools.html
File metadata and controls
34 lines (29 loc) · 964 Bytes
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
29
30
31
32
33
34
<body>
<div id="global-error-messages"></div>
{{> lazyHelper}}
<div id="confirmation" class="modal hide" tabindex="-1" role="dialog" aria-labelledby="confirmationLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
{{> confirmationTitle}}
</div>
<div class="modal-body">
{{> confirmationBody}}
</div>
<div class="modal-footer">
<button class="btn cancel" data-dismiss="modal" aria-hidden="true">No</button>
<button class="btn btn-primary success" data-dismiss="modal">Yes</button>
</div>
</div>
</body>
<template name="lazyHelper">
{{#if currentUser}}
{{doJob}}
{{showErrors}}
{{/if}}
</template>
<template name="confirmationTitle">
{{{title}}}
</template>
<template name="confirmationBody">
{{{body}}}
</template>