<div class="dashboard-tax-cash-flow-analysis-config">
    <div class="modal-header">
        <button type="button" class="btn close " ng-click="cancel()">
            <span aria-hidden="true">&times;</span>
        </button>
        <div class="modal-title">
            <span ng-bind="title | translate"></span>
        </div>
    </div>
    <div class="modal-body">
        <div class="form-group">
            <label><span ng-bind="'DisplayCharts' | translate"></span>:</label>
            <div class="flex-row-start-center">
                <div style="margin-left: 2em;">
                    <button class="btn btn-default radio-option" ng-click="configOptions.Display = 1">
                        <span ng-bind="'TaxCashFlowAnalysisConfigOTComparison' | translate"></span>
                        <i class="fa fa-check-circle" ng-show="configOptions.Display == 1"></i>
                    </button>
                </div>
                <div style="margin-left: 2em;">
                    <button class="btn btn-default radio-option" ng-click="configOptions.Display = 2">
                        <span ng-bind="'TaxCashFlowAnalysisConfigOTProportion' | translate"></span>
                        <i class="fa fa-check-circle" ng-show="configOptions.Display == 2"></i>
                    </button>
                </div>
            </div>
        </div>
    </div>
    <div class="modal-footer">
        <button type="button" class="btn btn-primary" ng-click="confirm()" ng-bind="'Save' | translate"></button>
        <button type="button" class="btn btn-third" ng-click="cancel()" ng-bind="'Cancel' | translate"></button>
    </div>
</div>