diff --git a/cps/admin.py b/cps/admin.py index d813d4f0..6edc824d 100755 --- a/cps/admin.py +++ b/cps/admin.py @@ -1320,7 +1320,7 @@ def edit_scheduledtasks(): time_field.append((n, format_time(datetime_time(hour=n), format="short",))) for n in range(5, 65, 5): t = timedelta(hours=n // 60, minutes=n % 60) - duration_field.append((n, format_timedelta(t, threshold=.95))) + duration_field.append((n, format_timedelta(t, threshold=.97))) return render_title_template("schedule_edit.html", config=content, diff --git a/cps/static/js/table.js b/cps/static/js/table.js index 548ca8c4..33c22a88 100644 --- a/cps/static/js/table.js +++ b/cps/static/js/table.js @@ -548,12 +548,6 @@ $(function() { }, }); - $("#user-table").on("click-cell.bs.table", function (field, value, row, $element) { - if (value === "denied_column_value") { - confirmDialog("btndeluser", "GeneralDeleteModal", $element.id, user_handle); - } - }); - $("#user-table").on("check.bs.table check-all.bs.table uncheck.bs.table uncheck-all.bs.table", function (e, rowsAfter, rowsBefore) { var rows = rowsAfter;