39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!-- Navigation -->
|
|
{% extends "base.html" %}
|
|
{% block title %}Dataset{% endblock %}
|
|
<!-- Page Content -->
|
|
{% block content %}
|
|
<!-- white-space: pre-wrap;
|
|
word-break: break-all; -->
|
|
<div class="container">
|
|
|
|
{% include "menu_dataset.html" %}
|
|
|
|
{% if msg %}
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>Dataset Raw</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ dr|safe }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>Dataset Hasil Pre-processing</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ dp|safe }}
|
|
</div>
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
Dataset Kosong!!
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
<!-- /.container -->
|
|
{% endblock %} |