Move Code into repo

This commit is contained in:
Aaron Kimbre
2022-01-16 12:22:00 -06:00
parent 1eef1854bc
commit 53ffe927f3
196 changed files with 33149 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
{% extends 'base.html.j2' %}
{% block title %}
{{ status|capitalize }} Bug Reports
{% endblock title %}
{% block content_before %}
{{ status|capitalize }} Bug Reports
{% endblock content_before %}
{% block content %}
<table class="table" id="accounts_table">
<thead>
<tr>
<th>Actions</th>
<th>Body</th>
<th>Client Version</th>
<th>Other Player</th>
<th>Type</th>
<th>Submitted</th>
<th>Resolved</th>
</tr>
</thead>
<tbody></tbody>
</table>
{% endblock %}
{% block js %}
{{ super () }}
<script>
$(document).ready(function(){
let accounts_table = $('#accounts_table').DataTable({
"processing": true,
"serverSide": true,
"ajax": "{{ url_for('bug_reports.get', status=status) }}",
});
});
</script>
{% endblock %}