74 lines
2.4 KiB
HTML
74 lines
2.4 KiB
HTML
{% include 'header.html' %}
|
|
<!-- Begin Page Content -->
|
|
<div class="container-fluid">
|
|
|
|
<!-- Content Row -->
|
|
<!-- Approach -->
|
|
<div class="card shadow mb-4">
|
|
<div class="card-header py-3">
|
|
<h6 class="m-0 font-weight-bold text-primary">Normalisasi</h6>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<form enctype="multipart/form-data" action="/normalisasing" method="POST">
|
|
<div class="mt-3">
|
|
<button type="submit" name="" value="normalisasing" class="btn btn-primary">Normalisasing</button>
|
|
</div>
|
|
<br>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!-- /.container-fluid -->
|
|
|
|
<!-- Approach -->
|
|
<div class="card shadow mb-4">
|
|
<div class="card-header py-3">
|
|
<h6 class="m-0 font-weight-bold text-primary">Normalisasing</h6>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
|
|
{% for table in tables %}
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ table|safe }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.container-fluid -->
|
|
|
|
</div>
|
|
<!-- End of Main Content -->
|
|
|
|
<!-- Scroll to Top Button-->
|
|
<a class="scroll-to-top rounded" href="#page-top">
|
|
<i class="fas fa-angle-up"></i>
|
|
</a>
|
|
|
|
<!-- Bootstrap core JavaScript-->
|
|
<script src="{{ url_for('static', filename='vendor/jquery/jquery.min.js') }}"></script>
|
|
<script
|
|
src="{{ url_for('static', filename='vendor/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
|
|
<!-- Core plugin JavaScript-->
|
|
<script
|
|
src="{{ url_for('static', filename='vendor/jquery-easing/jquery.easing.min.js') }}"></script>
|
|
|
|
<!-- Custom scripts for all pages-->
|
|
<script src="{{ url_for('static', filename='js/sb-admin-2.min.js') }}"></script>
|
|
|
|
<!-- Page level plugins -->
|
|
<script src="{{ url_for('static', filename='vendor/chart.js/Chart.min.js') }}"></script>
|
|
|
|
<!-- Page level custom scripts -->
|
|
<script src="{{ url_for('static', filename='js/demo/chart-area-demo.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/demo/chart-pie-demo.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
</html> |