1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/advlabdb/templates/users.html

27 lines
638 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block content %}
2021-03-19 20:40:40 +00:00
{{table|safe}}
<div>
<button id="deactivateUsersButton" class="btn btn-warning">Deactivate users</button>
</div>
<br>
<form method="post">
<button type="submit" name="registerUser" class="btn btn-primary">Register user</button>
</form>
2021-03-19 20:40:40 +00:00
{% endblock content %}
{% block scripts %}
<script>
var $table = $('#usersTab')
var $button = $('#deactivateUsersButton')
$(function() {
$button.click(function () {
window.location.href = '{{url_for("deactivate_users")}}?json=' + JSON.stringify($table.bootstrapTable('getSelections'))
})
})
</script>
{% endblock scripts %}