20 lines
731 B
HTML
20 lines
731 B
HTML
{% macro ConfirmationButton(btn_text, action, csrf_token, confirm_msg="Are you sure?", confirm_btn="Confirm", cancel_btn="Cancel") -%}
|
|
<v-popover placement='top-start'>
|
|
<template slot="popover">
|
|
<p>{{ confirm_msg }}</p>
|
|
<div class='action-group'>
|
|
<form method="POST" action="{{ action }}">
|
|
{{ csrf_token }}
|
|
<button class='usa-button usa-button-primary' type='submit'>
|
|
{{ confirm_btn }}
|
|
</button>
|
|
</form>
|
|
<button class='usa-button usa-button-secondary' v-close-popover>
|
|
{{ cancel_btn }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
<button class="tooltip-target" type="button">{{ btn_text }}</button>
|
|
</v-popover>
|
|
{%- endmacro %}
|