handle searchable when disabling email support

This commit is contained in:
Aaron Kimbre 2022-02-02 19:20:58 -06:00
parent 649c986345
commit 3df9f143ed

View File

@ -41,7 +41,11 @@
"serverSide": true,
"ajax": "{{ url_for('accounts.get') }}",
"columnDefs": [
{ "searchable": false, "targets": [0,7] },
{% if config.USER_ENABLE_EMAIL %}
{ "searchable": false, "targets": [0,7] },
{% else %}
{ "searchable": false, "targets": [0,6] },
{% endif %}
{ "orderable": false, "targets": [0] }
]
});