27c4f1a7f2
fixe some table to be wider make search and pagination float right
62 lines
1.5 KiB
Django/Jinja
62 lines
1.5 KiB
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}
|
|
Property Management
|
|
{% endblock title %}
|
|
|
|
{% block content_before %}
|
|
Property Management
|
|
{% endblock content_before %}
|
|
|
|
{% block content_override %}
|
|
<div class="mx-5">
|
|
{% if message %}
|
|
<div class="row">
|
|
<div class="col text-center">
|
|
<h3>{{ message }}</h3>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
{% endif %}
|
|
<table class="table table-dark table-striped table-bordered table-hover" id="properties_table">
|
|
<thead>
|
|
<tr>
|
|
<th>Actions</th>
|
|
<th>Owner</th>
|
|
<th>Template ID</th>
|
|
<th>Clone ID</th>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
<th>Privacy</th>
|
|
<th>Approved</th>
|
|
<th>Updated</th>
|
|
<th>Claimed</th>
|
|
<th>Rejection Reason</th>
|
|
<th>Reputation</th>
|
|
<th>Performance Cost</th>
|
|
<th>Location</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block js %}
|
|
{{ super () }}
|
|
<script>
|
|
$(document).ready(function(){
|
|
let properties_table = $('#properties_table').DataTable({
|
|
"processing": true,
|
|
"serverSide": true,
|
|
"ajax": "{{ url_for('properties.get', status='all') }}",
|
|
"columnDefs": [
|
|
{ "searchable": false, "targets": [0] },
|
|
{ "orderable": false, "targets": [0] }
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|