-
-
-
-
+
{% endblock %}
{% block extrascripts %}
-
+ var modal = $("#modal_delete");
+ var domain = $("#domainid option:selected").text();
+ var info = "Are you sure you want to delete the zone " + domain + "?";
+ modal.find('.modal-body p').text(info);
+ modal.find('#button_delete_confirm').click(function () {
+ $.post($SCRIPT_ROOT + '/domain/remove', {
+ '_csrf_token': '{{ csrf_token() }}',
+ 'domainid': domain,
+ }, function () {
+ window.location.href = '{{ url_for('dashboard.dashboard') }}';
+ });
+ modal.modal('hide');
+ })
+ modal.modal('show');
+ $("#button_delete_cancel").unbind().one('click', function (e) {
+ modal.modal('hide');
+ });
+ });
+
{% endblock %}
{% block modals %}
-
-
-
-
- Remove Domain
-
-
-
{% endblock %}
-