Merge pull request #943 from dod-ccpo/remove-confirmation-popover

Remove confirmation-popover
This commit is contained in:
George Drummond
2019-06-19 13:24:04 -04:00
committed by GitHub
7 changed files with 0 additions and 106 deletions

View File

@@ -1,20 +0,0 @@
{% macro ConfirmationButton(
btn_text,
action,
btn_icon=None,
btn_class=None,
confirm_msg="Are you sure?",
confirm_btn="Confirm",
cancel_btn="Cancel")
-%}
<confirmation-popover
btn_text='{{ btn_text }}'
btn_icon='{{ btn_icon }}'
btn_class='{{ btn_class }}'
action='{{ action }}'
csrf_token='{{ csrf_token() }}'
confirm_msg='{{ confirm_msg }}'
confirm_btn_text='{{ confirm_btn }}'
cancel_btn_text='{{ cancel_btn }}'>
</confirmation-popover>
{%- endmacro %}

View File

@@ -1,5 +0,0 @@
{% macro RequiredLabel() -%}
<span class='label label--error'>{{ "common.response_label" | translate }}</span>
{%- endmacro %}